Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
78cf3518
Commit
78cf3518
authored
May 11, 2007
by
Christophe Mutricy
Browse files
Don't hide the name in the status bar. Oups.
parent
5d427733
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/main_interface.cpp
View file @
78cf3518
...
@@ -129,11 +129,8 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
...
@@ -129,11 +129,8 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
slider
,
setPosition
(
float
,
int
,
int
)
);
slider
,
setPosition
(
float
,
int
,
int
)
);
CONNECT
(
THEMIM
->
getIM
(),
positionUpdated
(
float
,
int
,
int
),
CONNECT
(
THEMIM
->
getIM
(),
positionUpdated
(
float
,
int
,
int
),
this
,
setDisplay
(
float
,
int
,
int
)
);
this
,
setDisplay
(
float
,
int
,
int
)
);
if
(
config_GetInt
(
p_intf
,
"qt-name-in-title"
)
)
CONNECT
(
THEMIM
->
getIM
(),
nameChanged
(
QString
),
this
,
{
setName
(
QString
)
);
CONNECT
(
THEMIM
->
getIM
(),
nameChanged
(
QString
),
this
,
setName
(
QString
)
);
}
CONNECT
(
THEMIM
->
getIM
(),
statusChanged
(
int
),
this
,
setStatus
(
int
)
);
CONNECT
(
THEMIM
->
getIM
(),
statusChanged
(
int
),
this
,
setStatus
(
int
)
);
CONNECT
(
THEMIM
->
getIM
(),
statusChanged
(
int
),
this
,
CONNECT
(
THEMIM
->
getIM
(),
statusChanged
(
int
),
this
,
updateSystrayMenu
(
int
)
);
updateSystrayMenu
(
int
)
);
...
@@ -726,7 +723,11 @@ void MainInterface::setDisplay( float pos, int time, int length )
...
@@ -726,7 +723,11 @@ void MainInterface::setDisplay( float pos, int time, int length )
void
MainInterface
::
setName
(
QString
name
)
void
MainInterface
::
setName
(
QString
name
)
{
{
nameLabel
->
setText
(
" "
+
name
+
" "
);
nameLabel
->
setText
(
" "
+
name
+
" "
);
setVLCWindowsTitle
(
name
);
if
(
config_GetInt
(
p_intf
,
"qt-name-in-title"
)
)
{
setVLCWindowsTitle
(
name
);
}
}
}
void
MainInterface
::
setStatus
(
int
status
)
void
MainInterface
::
setStatus
(
int
status
)
...
...
Write
Preview
Supports
Markdown
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