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
afbf0d49
Commit
afbf0d49
authored
Jan 24, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: code cosmetics
parent
dc1fd8f5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
modules/gui/qt4/components/interface_widgets.cpp
modules/gui/qt4/components/interface_widgets.cpp
+1
-1
modules/gui/qt4/components/interface_widgets.hpp
modules/gui/qt4/components/interface_widgets.hpp
+1
-1
modules/gui/qt4/components/playlist/playlist_item.hpp
modules/gui/qt4/components/playlist/playlist_item.hpp
+3
-3
No files found.
modules/gui/qt4/components/interface_widgets.cpp
View file @
afbf0d49
...
@@ -570,7 +570,7 @@ CoverArtLabel::~CoverArtLabel()
...
@@ -570,7 +570,7 @@ CoverArtLabel::~CoverArtLabel()
void
CoverArtLabel
::
showArtUpdate
(
const
QString
&
url
)
void
CoverArtLabel
::
showArtUpdate
(
const
QString
&
url
)
{
{
QPixmap
pix
;
QPixmap
pix
;
if
(
!
url
.
isEmpty
()
&&
pix
.
load
(
url
)
)
if
(
!
url
.
isEmpty
()
&&
pix
.
load
(
url
)
)
{
{
pix
=
pix
.
scaled
(
maximumWidth
(),
maximumHeight
(),
pix
=
pix
.
scaled
(
maximumWidth
(),
maximumHeight
(),
Qt
::
KeepAspectRatioByExpanding
);
Qt
::
KeepAspectRatioByExpanding
);
...
...
modules/gui/qt4/components/interface_widgets.hpp
View file @
afbf0d49
...
@@ -199,7 +199,7 @@ private:
...
@@ -199,7 +199,7 @@ private:
intf_thread_t
*
p_intf
;
intf_thread_t
*
p_intf
;
public
slots
:
public
slots
:
void
requestUpdate
()
{
emit
updateRequested
();
}
;
void
requestUpdate
()
{
emit
updateRequested
();
}
void
update
(
)
void
update
(
)
{
{
requestUpdate
();
requestUpdate
();
...
...
modules/gui/qt4/components/playlist/playlist_item.hpp
View file @
afbf0d49
...
@@ -50,10 +50,10 @@ public:
...
@@ -50,10 +50,10 @@ public:
void
removeChildren
();
void
removeChildren
();
void
takeChildAt
(
int
);
void
takeChildAt
(
int
);
PLItem
*
child
(
int
row
)
{
return
children
.
value
(
row
);
}
;
PLItem
*
child
(
int
row
)
{
return
children
.
value
(
row
);
}
int
childCount
()
const
{
return
children
.
count
();
}
;
int
childCount
()
const
{
return
children
.
count
();
}
PLItem
*
parent
()
{
return
parentItem
;
}
;
PLItem
*
parent
()
{
return
parentItem
;
}
input_item_t
*
inputItem
()
{
return
p_input
;
}
input_item_t
*
inputItem
()
{
return
p_input
;
}
protected:
protected:
...
...
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