Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
adf3d6f4
Commit
adf3d6f4
authored
Feb 08, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: fix indentation
parent
f1118479
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/gui/qt4/util/registry.cpp
modules/gui/qt4/util/registry.cpp
+5
-5
No files found.
modules/gui/qt4/util/registry.cpp
View file @
adf3d6f4
...
...
@@ -42,7 +42,7 @@ QVLCRegistry::~QVLCRegistry( void )
bool
QVLCRegistry
::
RegistryKeyExists
(
const
char
*
path
)
{
HKEY
keyHandle
;
if
(
RegOpenKeyEx
(
m_RootKey
,
path
,
0
,
KEY_READ
,
&
keyHandle
)
==
ERROR_SUCCESS
)
if
(
RegOpenKeyEx
(
m_RootKey
,
path
,
0
,
KEY_READ
,
&
keyHandle
)
==
ERROR_SUCCESS
)
{
RegCloseKey
(
keyHandle
);
return
true
;
...
...
@@ -57,7 +57,7 @@ bool QVLCRegistry::RegistryValueExists( const char *path, const char *valueName
DWORD
size1
;
DWORD
valueType
;
if
(
RegOpenKeyEx
(
m_RootKey
,
path
,
0
,
KEY_READ
,
&
keyHandle
)
==
ERROR_SUCCESS
)
if
(
RegOpenKeyEx
(
m_RootKey
,
path
,
0
,
KEY_READ
,
&
keyHandle
)
==
ERROR_SUCCESS
)
{
if
(
RegQueryValueEx
(
keyHandle
,
valueName
,
NULL
,
&
valueType
,
NULL
,
&
size1
)
==
ERROR_SUCCESS
)
...
...
@@ -73,7 +73,7 @@ void QVLCRegistry::WriteRegistryInt( const char *path, const char *valueName, in
{
HKEY
keyHandle
;
if
(
RegCreateKeyEx
(
m_RootKey
,
path
,
0
,
NULL
,
REG_OPTION_NON_VOLATILE
,
if
(
RegCreateKeyEx
(
m_RootKey
,
path
,
0
,
NULL
,
REG_OPTION_NON_VOLATILE
,
KEY_WRITE
,
NULL
,
&
keyHandle
,
NULL
)
==
ERROR_SUCCESS
)
{
RegSetValueEx
(
keyHandle
,
valueName
,
0
,
REG_DWORD
,
...
...
@@ -86,7 +86,7 @@ void QVLCRegistry::WriteRegistryString( const char *path, const char *valueName,
{
HKEY
keyHandle
;
if
(
RegCreateKeyEx
(
m_RootKey
,
path
,
0
,
NULL
,
REG_OPTION_NON_VOLATILE
,
if
(
RegCreateKeyEx
(
m_RootKey
,
path
,
0
,
NULL
,
REG_OPTION_NON_VOLATILE
,
KEY_WRITE
,
NULL
,
&
keyHandle
,
NULL
)
==
ERROR_SUCCESS
)
{
RegSetValueEx
(
keyHandle
,
valueName
,
0
,
REG_SZ
,
(
LPBYTE
)
value
,
...
...
@@ -112,7 +112,7 @@ int QVLCRegistry::ReadRegistryInt( const char *path, const char *valueName, int
DWORD
size1
;
DWORD
valueType
;
if
(
RegOpenKeyEx
(
m_RootKey
,
path
,
0
,
KEY_READ
,
&
keyHandle
)
==
ERROR_SUCCESS
)
if
(
RegOpenKeyEx
(
m_RootKey
,
path
,
0
,
KEY_READ
,
&
keyHandle
)
==
ERROR_SUCCESS
)
{
if
(
RegQueryValueEx
(
keyHandle
,
valueName
,
NULL
,
&
valueType
,
NULL
,
&
size1
)
==
ERROR_SUCCESS
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment