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
0bb2110c
Commit
0bb2110c
authored
Mar 02, 2012
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: Don't bypass (goto error) local variable declarations
parent
e3511f67
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+6
-6
No files found.
modules/gui/qt4/qt4.cpp
View file @
0bb2110c
...
...
@@ -183,6 +183,12 @@ static void ShowDialog ( intf_thread_t *, int, int, intf_dialog_args_t * );
#define ICONCHANGE_LONGTEXT N_( \
"This option allows the interface to change its icon on various occasions.")
static
const
int
i_notification_list
[]
=
{
NOTIFICATION_NEVER
,
NOTIFICATION_MINIMIZED
,
NOTIFICATION_ALWAYS
};
static
const
char
*
const
psz_notification_list_text
[]
=
{
N_
(
"Never"
),
N_
(
"When minimized"
),
N_
(
"Always"
)
};
/**********************************************************************/
vlc_module_begin
()
set_shortname
(
"Qt"
)
...
...
@@ -205,12 +211,6 @@ vlc_module_begin ()
#endif
SYSTRAY_TEXT
,
SYSTRAY_LONGTEXT
,
false
)
static
const
int
i_notification_list
[]
=
{
NOTIFICATION_NEVER
,
NOTIFICATION_MINIMIZED
,
NOTIFICATION_ALWAYS
};
static
const
char
*
const
psz_notification_list_text
[]
=
{
N_
(
"Never"
),
N_
(
"When minimized"
),
N_
(
"Always"
)
};
add_integer
(
"qt-notification"
,
NOTIFICATION_MINIMIZED
,
NOTIFICATION_TEXT
,
NOTIFICATION_LONGTEXT
,
false
)
...
...
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