Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
62fae3a7
Commit
62fae3a7
authored
Jul 09, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use Header capitalisation for dialogs titles.
parent
64417a25
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.cpp
+1
-1
modules/gui/qt4/dialogs/bookmarks.cpp
modules/gui/qt4/dialogs/bookmarks.cpp
+1
-1
modules/gui/qt4/dialogs/gototime.cpp
modules/gui/qt4/dialogs/gototime.cpp
+1
-1
modules/gui/qt4/dialogs/mediainfo.cpp
modules/gui/qt4/dialogs/mediainfo.cpp
+1
-1
modules/gui/qt4/dialogs/sout.cpp
modules/gui/qt4/dialogs/sout.cpp
+1
-1
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+1
-1
No files found.
modules/gui/qt4/components/open_panels.cpp
View file @
62fae3a7
...
@@ -1102,7 +1102,7 @@ void CaptureOpenPanel::advancedDialog()
...
@@ -1102,7 +1102,7 @@ void CaptureOpenPanel::advancedDialog()
/* New Adv Prop dialog */
/* New Adv Prop dialog */
adv
=
new
QDialog
(
this
);
adv
=
new
QDialog
(
this
);
adv
->
setWindowTitle
(
qtr
(
"Advanced
options...
"
)
);
adv
->
setWindowTitle
(
qtr
(
"Advanced
Options
"
)
);
/* A main Layout with a Frame */
/* A main Layout with a Frame */
QVBoxLayout
*
mainLayout
=
new
QVBoxLayout
(
adv
);
QVBoxLayout
*
mainLayout
=
new
QVBoxLayout
(
adv
);
...
...
modules/gui/qt4/dialogs/bookmarks.cpp
View file @
62fae3a7
...
@@ -37,7 +37,7 @@ BookmarksDialog::BookmarksDialog( intf_thread_t *_p_intf ):QVLCFrame( _p_intf )
...
@@ -37,7 +37,7 @@ BookmarksDialog::BookmarksDialog( intf_thread_t *_p_intf ):QVLCFrame( _p_intf )
{
{
setWindowFlags
(
Qt
::
Tool
);
setWindowFlags
(
Qt
::
Tool
);
setWindowOpacity
(
config_GetFloat
(
p_intf
,
"qt-opacity"
)
);
setWindowOpacity
(
config_GetFloat
(
p_intf
,
"qt-opacity"
)
);
setWindowTitle
(
qtr
(
"Edit
bookmark
"
)
);
setWindowTitle
(
qtr
(
"Edit
Bookmarks
"
)
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
...
...
modules/gui/qt4/dialogs/gototime.cpp
View file @
62fae3a7
...
@@ -43,7 +43,7 @@ GotoTimeDialog::GotoTimeDialog( QWidget *parent, intf_thread_t *_p_intf)
...
@@ -43,7 +43,7 @@ GotoTimeDialog::GotoTimeDialog( QWidget *parent, intf_thread_t *_p_intf)
:
QVLCDialog
(
parent
,
_p_intf
)
:
QVLCDialog
(
parent
,
_p_intf
)
{
{
setWindowFlags
(
Qt
::
Tool
);
setWindowFlags
(
Qt
::
Tool
);
setWindowTitle
(
qtr
(
"Go to
t
ime"
)
);
setWindowTitle
(
qtr
(
"Go to
T
ime"
)
);
QGridLayout
*
mainLayout
=
new
QGridLayout
(
this
);
QGridLayout
*
mainLayout
=
new
QGridLayout
(
this
);
mainLayout
->
setSizeConstraint
(
QLayout
::
SetFixedSize
);
mainLayout
->
setSizeConstraint
(
QLayout
::
SetFixedSize
);
...
...
modules/gui/qt4/dialogs/mediainfo.cpp
View file @
62fae3a7
...
@@ -52,7 +52,7 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf,
...
@@ -52,7 +52,7 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf,
b_cleaned
=
true
;
b_cleaned
=
true
;
i_runs
=
0
;
i_runs
=
0
;
setWindowTitle
(
qtr
(
"Media
i
nformation"
)
);
setWindowTitle
(
qtr
(
"Media
I
nformation"
)
);
resize
(
600
,
480
);
resize
(
600
,
480
);
/* TabWidgets and Tabs creation */
/* TabWidgets and Tabs creation */
...
...
modules/gui/qt4/dialogs/sout.cpp
View file @
62fae3a7
...
@@ -96,7 +96,7 @@ SoutDialog* SoutDialog::instance = NULL;
...
@@ -96,7 +96,7 @@ SoutDialog* SoutDialog::instance = NULL;
SoutDialog
::
SoutDialog
(
QWidget
*
parent
,
intf_thread_t
*
_p_intf
,
SoutDialog
::
SoutDialog
(
QWidget
*
parent
,
intf_thread_t
*
_p_intf
,
bool
_transcode_only
)
:
QVLCDialog
(
parent
,
_p_intf
)
bool
_transcode_only
)
:
QVLCDialog
(
parent
,
_p_intf
)
{
{
setWindowTitle
(
qtr
(
"Stream
o
utput"
)
);
setWindowTitle
(
qtr
(
"Stream
O
utput"
)
);
b_transcode_only
=
_transcode_only
;
b_transcode_only
=
_transcode_only
;
...
...
modules/gui/qt4/main_interface.cpp
View file @
62fae3a7
...
@@ -467,7 +467,7 @@ int MainInterface::privacyDialog( QList<ConfigControl *> controls )
...
@@ -467,7 +467,7 @@ int MainInterface::privacyDialog( QList<ConfigControl *> controls )
{
{
QDialog
*
privacy
=
new
QDialog
();
QDialog
*
privacy
=
new
QDialog
();
privacy
->
setWindowTitle
(
qtr
(
"Privacy and Network
p
olicies"
)
);
privacy
->
setWindowTitle
(
qtr
(
"Privacy and Network
P
olicies"
)
);
QGridLayout
*
gLayout
=
new
QGridLayout
(
privacy
);
QGridLayout
*
gLayout
=
new
QGridLayout
(
privacy
);
...
...
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