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
00b26db6
Commit
00b26db6
authored
Nov 21, 2009
by
JP Dinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skins2: Cosmetics
parent
1603369c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
58 deletions
+45
-58
modules/gui/skins2/src/theme_loader.cpp
modules/gui/skins2/src/theme_loader.cpp
+31
-32
modules/gui/skins2/utils/position.cpp
modules/gui/skins2/utils/position.cpp
+8
-8
modules/gui/skins2/win32/win32_factory.cpp
modules/gui/skins2/win32/win32_factory.cpp
+6
-18
No files found.
modules/gui/skins2/src/theme_loader.cpp
View file @
00b26db6
...
...
@@ -585,7 +585,7 @@ int tar_extract_all( TAR *t, char *prefix )
case
REGTYPE
:
case
AREGTYPE
:
remaining
=
getoct
(
buffer
.
header
.
size
,
12
);
if
(
remaining
)
if
(
!
remaining
)
outfile
=
NULL
;
else
{
outfile
=
fopen
(
fname
,
"wb"
);
if
(
outfile
==
NULL
)
...
...
@@ -606,7 +606,6 @@ int tar_extract_all( TAR *t, char *prefix )
}
}
}
else
outfile
=
NULL
;
/*
* could have no contents
...
...
modules/gui/skins2/utils/position.cpp
View file @
00b26db6
modules/gui/skins2/win32/win32_factory.cpp
View file @
00b26db6
...
...
@@ -389,24 +389,12 @@ void Win32Factory::changeCursor( CursorType_t type ) const
LPCTSTR
id
;
switch
(
type
)
{
case
kDefaultArrow
:
id
=
IDC_ARROW
;
break
;
case
kResizeNWSE
:
id
=
IDC_SIZENWSE
;
break
;
case
kResizeNS
:
id
=
IDC_SIZENS
;
break
;
case
kResizeWE
:
id
=
IDC_SIZEWE
;
break
;
case
kResizeNESW
:
id
=
IDC_SIZENESW
;
break
;
default:
id
=
IDC_ARROW
;
break
;
case
kDefaultArrow
:
id
=
IDC_ARROW
;
break
;
case
kResizeNWSE
:
id
=
IDC_SIZENWSE
;
break
;
case
kResizeNS
:
id
=
IDC_SIZENS
;
break
;
case
kResizeWE
:
id
=
IDC_SIZEWE
;
break
;
case
kResizeNESW
:
id
=
IDC_SIZENESW
;
break
;
}
HCURSOR
hCurs
=
LoadCursor
(
NULL
,
id
);
...
...
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