Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
2bd41c43
Commit
2bd41c43
authored
Apr 01, 2005
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wx/*: fix a few string additions
parent
18631b59
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
modules/gui/wxwindows/preferences_widgets.cpp
modules/gui/wxwindows/preferences_widgets.cpp
+4
-4
modules/gui/wxwindows/timer.cpp
modules/gui/wxwindows/timer.cpp
+2
-2
No files found.
modules/gui/wxwindows/preferences_widgets.cpp
View file @
2bd41c43
...
...
@@ -458,12 +458,12 @@ void ModuleListCatConfigControl::OnUpdate( wxCommandEvent &event )
if
(
b_waschecked
)
{
/* Maybe not the clest solution */
if
(
!
newtext
.
Replace
(
wx
U
(
","
)
if
(
!
newtext
.
Replace
(
wx
String
(
wxT
(
","
)
)
+
wxU
(
pp_checkboxes
[
i
]
->
psz_module
),
wx
U
(
""
)))
wx
T
(
""
)))
{
if
(
!
newtext
.
Replace
(
wx
U
(
pp_checkboxes
[
i
]
->
psz_module
)
+
wx
U
(
","
),
wxU
(
""
)))
if
(
!
newtext
.
Replace
(
wx
String
(
wxU
(
pp_checkboxes
[
i
]
->
psz_module
)
)
+
wx
T
(
","
),
wxT
(
""
)))
{
newtext
.
Replace
(
wxU
(
pp_checkboxes
[
i
]
->
psz_module
),
wxU
(
""
));
}
...
...
modules/gui/wxwindows/timer.cpp
View file @
2bd41c43
...
...
@@ -141,7 +141,7 @@ void Timer::Notify()
if
(
psz_now_playing
&&
*
psz_now_playing
)
{
p_main_interface
->
statusbar
->
SetStatusText
(
wx
U
(
psz_now_playing
)
+
wxT
(
" - "
)
+
wx
String
(
wxU
(
psz_now_playing
)
)
+
wxT
(
" - "
)
+
wxU
(
p_intf
->
p_sys
->
p_input
->
input
.
p_item
->
psz_name
),
2
);
}
else
...
...
@@ -211,7 +211,7 @@ void Timer::Notify()
if
(
psz_now_playing
&&
*
psz_now_playing
)
{
p_main_interface
->
statusbar
->
SetStatusText
(
wx
U
(
psz_now_playing
)
+
wxT
(
" - "
)
+
wx
String
(
wxU
(
psz_now_playing
)
)
+
wxT
(
" - "
)
+
wxU
(
p_intf
->
p_sys
->
p_input
->
input
.
p_item
->
psz_name
),
2
);
}
else
...
...
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