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
640d8df2
Commit
640d8df2
authored
Apr 01, 2005
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wxwindows.cpp: compile fixes
parent
792697d5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/gui/wxwindows/wxwindows.cpp
modules/gui/wxwindows/wxwindows.cpp
+3
-3
No files found.
modules/gui/wxwindows/wxwindows.cpp
View file @
640d8df2
...
...
@@ -504,7 +504,7 @@ WindowSettings::~WindowSettings( )
wxString
sCfg
;
int
i
;
sCfg
=
wxString
::
Format
(
"(%d,0,0,%d,%d)"
,
ID_SCREEN
,
sCfg
=
wxString
::
Format
(
wxT
(
"(%d,0,0,%d,%d)"
)
,
ID_SCREEN
,
wxSystemSettings
::
GetMetric
(
wxSYS_SCREEN_X
),
wxSystemSettings
::
GetMetric
(
wxSYS_SCREEN_Y
)
);
for
(
i
=
0
;
i
<
ID_MAX
;
i
++
)
...
...
@@ -512,12 +512,12 @@ WindowSettings::~WindowSettings( )
if
(
!
b_valid
[
i
]
||
!
b_shown
[
i
]
)
continue
;
sCfg
+=
wxString
::
Format
(
"(%d,%d,%d,%d,%d)"
,
sCfg
+=
wxString
::
Format
(
wxT
(
"(%d,%d,%d,%d,%d)"
)
,
i
,
position
[
i
].
x
,
position
[
i
].
y
,
size
[
i
].
x
,
size
[
i
].
y
);
}
config_PutPsz
(
p_intf
,
"wxwin-config-last"
,
sCfg
.
c
_str
()
);
config_PutPsz
(
p_intf
,
"wxwin-config-last"
,
sCfg
.
mb
_str
()
);
config_SaveConfigFile
(
p_intf
,
"wxwindows"
);
}
void
WindowSettings
::
SetScreen
(
int
i_screen_w
,
int
i_screen_h
)
...
...
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