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
5b308d06
Commit
5b308d06
authored
Jul 20, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: add some missing const.
parent
ef60a430
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
21 deletions
+21
-21
modules/gui/qt4/dialogs_provider.cpp
modules/gui/qt4/dialogs_provider.cpp
+4
-4
modules/gui/qt4/dialogs_provider.hpp
modules/gui/qt4/dialogs_provider.hpp
+4
-4
modules/gui/qt4/input_manager.hpp
modules/gui/qt4/input_manager.hpp
+1
-1
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+9
-9
modules/gui/qt4/main_interface.hpp
modules/gui/qt4/main_interface.hpp
+3
-3
No files found.
modules/gui/qt4/dialogs_provider.cpp
View file @
5b308d06
...
...
@@ -373,9 +373,9 @@ void DialogsProvider::MLAppendDialog( int tab )
/**
* Simple open
***/
QStringList
DialogsProvider
::
showSimpleOpen
(
QString
help
,
QStringList
DialogsProvider
::
showSimpleOpen
(
const
QString
&
help
,
int
filters
,
QString
path
)
const
QString
&
path
)
{
QString
fileTypes
=
""
;
if
(
filters
&
EXT_FILTER_MEDIA
)
{
...
...
@@ -565,7 +565,7 @@ void DialogsProvider::saveAPlaylist()
****************************************************************************/
void
DialogsProvider
::
streamingDialog
(
QWidget
*
parent
,
QString
mrl
,
const
QString
&
mrl
,
bool
b_transcode_only
,
QStringList
options
)
{
...
...
@@ -686,7 +686,7 @@ void DialogsProvider::menuUpdateAction( QObject *data )
func
->
doFunc
(
p_intf
);
}
void
DialogsProvider
::
SDMenuAction
(
QString
data
)
void
DialogsProvider
::
SDMenuAction
(
const
QString
&
data
)
{
char
*
psz_sd
=
strdup
(
qtu
(
data
)
);
if
(
!
playlist_IsServicesDiscoveryLoaded
(
THEPL
,
psz_sd
)
)
...
...
modules/gui/qt4/dialogs_provider.hpp
View file @
5b308d06
...
...
@@ -112,11 +112,11 @@ public:
return
(
instance
!=
NULL
);
}
QStringList
showSimpleOpen
(
QString
help
=
QString
(),
QStringList
showSimpleOpen
(
const
QString
&
help
=
QString
(),
int
filters
=
EXT_FILTER_MEDIA
|
EXT_FILTER_VIDEO
|
EXT_FILTER_AUDIO
|
EXT_FILTER_PLAYLIST
,
QString
path
=
QString
()
);
const
QString
&
path
=
QString
()
);
bool
isDying
()
{
return
b_isDying
;
}
protected:
QSignalMapper
*
menusMapper
;
...
...
@@ -179,7 +179,7 @@ public slots:
void
PLAppendDir
();
void
MLAppendDir
();
void
streamingDialog
(
QWidget
*
parent
,
QString
mrl
,
bool
b_stream
=
true
,
void
streamingDialog
(
QWidget
*
parent
,
const
QString
&
mrl
,
bool
b_stream
=
true
,
QStringList
options
=
QStringList
(
""
)
);
void
openAndStreamingDialogs
();
void
openAndTranscodingDialogs
();
...
...
@@ -193,7 +193,7 @@ public slots:
private
slots
:
void
menuAction
(
QObject
*
);
void
menuUpdateAction
(
QObject
*
);
void
SDMenuAction
(
QString
);
void
SDMenuAction
(
const
QString
&
);
signals:
void
toolBarConfUpdated
();
};
...
...
modules/gui/qt4/input_manager.hpp
View file @
5b308d06
...
...
@@ -178,7 +178,7 @@ signals:
/// Send new position, new time and new length
void
positionUpdated
(
float
,
int
,
int
);
void
rateChanged
(
int
);
void
nameChanged
(
QString
);
void
nameChanged
(
const
QString
&
);
/// Used to signal whether we should show navigation buttons
void
titleChanged
(
bool
);
void
chapterChanged
(
bool
);
...
...
modules/gui/qt4/main_interface.cpp
View file @
5b308d06
...
...
@@ -178,19 +178,19 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
* them down.
*/
/* Naming in the controller statusbar */
CONNECT
(
THEMIM
->
getIM
(),
nameChanged
(
QString
),
this
,
setName
(
QString
)
);
CONNECT
(
THEMIM
->
getIM
(),
nameChanged
(
const
QString
&
),
this
,
setName
(
const
QString
&
)
);
/* and in the systray */
if
(
sysTray
)
{
CONNECT
(
THEMIM
->
getIM
(),
nameChanged
(
QString
),
this
,
updateSystrayTooltipName
(
QString
)
);
CONNECT
(
THEMIM
->
getIM
(),
nameChanged
(
const
QString
&
),
this
,
updateSystrayTooltipName
(
const
QString
&
)
);
}
/* and in the title of the controller */
if
(
config_GetInt
(
p_intf
,
"qt-name-in-title"
)
)
{
CONNECT
(
THEMIM
->
getIM
(),
nameChanged
(
QString
),
this
,
setVLCWindowsTitle
(
QString
)
);
CONNECT
(
THEMIM
->
getIM
(),
nameChanged
(
const
QString
&
),
this
,
setVLCWindowsTitle
(
const
QString
&
)
);
}
/**
...
...
@@ -910,7 +910,7 @@ void MainInterface::visual()
/************************************************************************
* Other stuff
************************************************************************/
void
MainInterface
::
setName
(
QString
name
)
void
MainInterface
::
setName
(
const
QString
&
name
)
{
input_name
=
name
;
/* store it for the QSystray use */
/* Display it in the status bar, but also as a Tooltip in case it doesn't
...
...
@@ -923,7 +923,7 @@ void MainInterface::setName( QString name )
* Give the decorations of the Main Window a correct Name.
* If nothing is given, set it to VLC...
**/
void
MainInterface
::
setVLCWindowsTitle
(
QString
aTitle
)
void
MainInterface
::
setVLCWindowsTitle
(
const
QString
&
aTitle
)
{
if
(
aTitle
.
isEmpty
()
)
{
...
...
@@ -1048,7 +1048,7 @@ void MainInterface::handleSystrayClick(
* Updates the name of the systray Icon tooltip.
* Doesn't check if the systray exists, check before you call it.
**/
void
MainInterface
::
updateSystrayTooltipName
(
QString
name
)
void
MainInterface
::
updateSystrayTooltipName
(
const
QString
&
name
)
{
if
(
name
.
isEmpty
()
)
{
...
...
modules/gui/qt4/main_interface.hpp
View file @
5b308d06
...
...
@@ -167,13 +167,13 @@ private slots:
void
destroyPopupMenu
();
void
recreateToolbars
();
void
doComponentsUpdate
();
void
setName
(
QString
);
void
setVLCWindowsTitle
(
QString
title
=
""
);
void
setName
(
const
QString
&
);
void
setVLCWindowsTitle
(
const
QString
&
title
=
""
);
#if 0
void visual();
#endif
void
handleSystrayClick
(
QSystemTrayIcon
::
ActivationReason
);
void
updateSystrayTooltipName
(
QString
);
void
updateSystrayTooltipName
(
const
QString
&
);
void
updateSystrayTooltipStatus
(
int
);
void
showCryptedLabel
(
bool
);
...
...
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