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
191bedcd
Commit
191bedcd
authored
Jul 09, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
String review. Again.
parent
ed90b528
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
modules/gui/qt4/dialogs/open.cpp
modules/gui/qt4/dialogs/open.cpp
+1
-1
modules/gui/qt4/dialogs/podcast_configuration.cpp
modules/gui/qt4/dialogs/podcast_configuration.cpp
+1
-1
modules/gui/qt4/dialogs/preferences.cpp
modules/gui/qt4/dialogs/preferences.cpp
+1
-1
modules/gui/qt4/dialogs/vlm.cpp
modules/gui/qt4/dialogs/vlm.cpp
+2
-2
No files found.
modules/gui/qt4/dialogs/open.cpp
View file @
191bedcd
...
...
@@ -99,7 +99,7 @@ OpenDialog::OpenDialog( QWidget *parent,
cancelButton
=
new
QPushButton
(
qtr
(
"&Cancel"
)
);
/* Select Button */
selectButton
=
new
QPushButton
(
qtr
(
"Select"
)
);
selectButton
=
new
QPushButton
(
qtr
(
"
&
Select"
)
);
/* Menu for the Play button */
QMenu
*
openButtonMenu
=
new
QMenu
(
"Open"
);
...
...
modules/gui/qt4/dialogs/podcast_configuration.cpp
View file @
191bedcd
...
...
@@ -35,7 +35,7 @@ PodcastConfigDialog::PodcastConfigDialog( QWidget *parent, intf_thread_t *_p_int
ui
.
setupUi
(
this
);
QPushButton
*
okButton
=
new
QPushButton
(
qtr
(
"OK"
),
this
);
QPushButton
*
cancelButton
=
new
QPushButton
(
qtr
(
"Cancel"
),
this
);
QPushButton
*
cancelButton
=
new
QPushButton
(
qtr
(
"
&
Cancel"
),
this
);
ui
.
okCancel
->
addButton
(
okButton
,
QDialogButtonBox
::
AcceptRole
);
ui
.
okCancel
->
addButton
(
cancelButton
,
QDialogButtonBox
::
RejectRole
);
CONNECT
(
ui
.
podcastAdd
,
clicked
(),
this
,
add
()
);
...
...
modules/gui/qt4/dialogs/preferences.cpp
View file @
191bedcd
...
...
@@ -62,7 +62,7 @@ PrefsDialog::PrefsDialog( QWidget *parent, intf_thread_t *_p_intf )
types
->
setAlignment
(
Qt
::
AlignHCenter
);
QHBoxLayout
*
types_l
=
new
QHBoxLayout
;
types_l
->
setSpacing
(
3
);
types_l
->
setMargin
(
3
);
small
=
new
QRadioButton
(
qtr
(
"Basic"
),
types
);
small
=
new
QRadioButton
(
qtr
(
"Simple"
),
types
);
types_l
->
addWidget
(
small
);
all
=
new
QRadioButton
(
qtr
(
"All"
),
types
);
types_l
->
addWidget
(
all
);
types
->
setLayout
(
types_l
);
...
...
modules/gui/qt4/dialogs/vlm.cpp
View file @
191bedcd
...
...
@@ -130,7 +130,7 @@ VLMDialog::VLMDialog( QWidget *parent, intf_thread_t *_p_intf ) : QVLCDialog( pa
new
QSpacerItem
(
10
,
10
,
QSizePolicy
::
Minimum
,
QSizePolicy
::
Expanding
);
vlmItemLayout
->
addItem
(
spacer
);
QPushButton
*
importButton
=
new
QPushButton
(
qtr
(
"Import"
)
);
QPushButton
*
importButton
=
new
QPushButton
(
qtr
(
"Import"
)
);
ui
.
buttonBox
->
addButton
(
importButton
,
QDialogButtonBox
::
ActionRole
);
QPushButton
*
exportButton
=
new
QPushButton
(
qtr
(
"Export"
)
);
...
...
@@ -333,7 +333,7 @@ void VLMDialog::mediasPopulator()
bool
VLMDialog
::
importVLMConf
()
{
QString
openVLMConfFileName
=
QFileDialog
::
getOpenFileName
(
this
,
qtr
(
"
Choose a VLM configuration file to open...
"
),
this
,
qtr
(
"
Open a VLM Configuration File
"
),
qfu
(
config_GetHomeDir
()
),
qtr
(
"VLM conf (*.vlm) ;; All (*.*)"
)
);
...
...
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