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
1d4ad4ac
Commit
1d4ad4ac
authored
Aug 16, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: remove unneeded whitespace that blocks normalized signatures
parent
5886e36b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
modules/gui/qt4/components/sout/sout_widgets.cpp
modules/gui/qt4/components/sout/sout_widgets.cpp
+2
-2
modules/gui/qt4/qt4.hpp
modules/gui/qt4/qt4.hpp
+3
-3
No files found.
modules/gui/qt4/components/sout/sout_widgets.cpp
View file @
1d4ad4ac
...
@@ -80,8 +80,8 @@ void SoutInputBox::setMRL( const QString& mrl )
...
@@ -80,8 +80,8 @@ void SoutInputBox::setMRL( const QString& mrl )
sourceValueLabel
->
setText
(
type
);
sourceValueLabel
->
setText
(
type
);
}
}
#define CT( x ) connect( x, SIGNAL(
textChanged( const QString& ) ), this, SIGNAL( mrlUpdated()
) );
#define CT( x ) connect( x, SIGNAL(
textChanged(QString)), this, SIGNAL(mrlUpdated()
) );
#define CS( x ) connect( x, SIGNAL(
valueChanged( int ) ), this, SIGNAL( mrlUpdated()
) );
#define CS( x ) connect( x, SIGNAL(
valueChanged(int)), this, SIGNAL(mrlUpdated()
) );
/* FileDest Box */
/* FileDest Box */
FileDestBox
::
FileDestBox
(
QWidget
*
_parent
)
:
VirtualDestBox
(
_parent
)
FileDestBox
::
FileDestBox
(
QWidget
*
_parent
)
:
VirtualDestBox
(
_parent
)
...
...
modules/gui/qt4/qt4.hpp
View file @
1d4ad4ac
...
@@ -91,10 +91,10 @@ struct intf_sys_t
...
@@ -91,10 +91,10 @@ struct intf_sys_t
#define qtu( i ) ((i).toUtf8().constData())
#define qtu( i ) ((i).toUtf8().constData())
#define CONNECT( a, b, c, d ) \
#define CONNECT( a, b, c, d ) \
connect( a, SIGNAL(
b
), c, SLOT(d) )
connect( a, SIGNAL(
b
), c, SLOT(d) )
#define DCONNECT( a, b, c, d ) \
#define DCONNECT( a, b, c, d ) \
connect( a, SIGNAL(
b
), c, SLOT(d), Qt::DirectConnection )
connect( a, SIGNAL(
b
), c, SLOT(d), Qt::DirectConnection )
#define BUTTONACT( b, a ) connect( b, SIGNAL(
clicked()
), this, SLOT(a) )
#define BUTTONACT( b, a ) connect( b, SIGNAL(
clicked()
), this, SLOT(a) )
#define BUTTON_SET( button, text, tooltip ) \
#define BUTTON_SET( button, text, tooltip ) \
button->setText( text ); \
button->setText( text ); \
...
...
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