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
62557bba
Commit
62557bba
authored
Jul 09, 2008
by
Jean-Baptiste Kempf
Browse files
use OK instead of Ok
Same as previous
parent
62fae3a7
Changes
3
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/components/open_panels.cpp
View file @
62557bba
...
...
@@ -1129,7 +1129,7 @@ void CaptureOpenPanel::advancedDialog()
/* Button stuffs */
QDialogButtonBox
*
advButtonBox
=
new
QDialogButtonBox
(
adv
);
QPushButton
*
closeButton
=
new
QPushButton
(
qtr
(
"O
k
"
)
);
QPushButton
*
closeButton
=
new
QPushButton
(
qtr
(
"O
K
"
)
);
QPushButton
*
cancelButton
=
new
QPushButton
(
qtr
(
"Cancel"
)
);
CONNECT
(
closeButton
,
clicked
(),
adv
,
accept
()
);
...
...
modules/gui/qt4/main_interface.cpp
View file @
62557bba
...
...
@@ -521,7 +521,7 @@ int MainInterface::privacyDialog( QList<ConfigControl *> controls )
CONFIG_GENERIC_NOBOOL
(
"qt-updates-days"
,
Integer
);
line
++
;
#endif
QPushButton
*
ok
=
new
QPushButton
(
qtr
(
"O
k
"
)
);
QPushButton
*
ok
=
new
QPushButton
(
qtr
(
"O
K
"
)
);
gLayout
->
addWidget
(
ok
,
2
,
2
);
...
...
src/interface/interaction.c
View file @
62557bba
...
...
@@ -276,7 +276,7 @@ int __intf_UserLoginPassword( vlc_object_t *p_this,
p_new
->
i_type
=
INTERACT_DIALOG_TWOWAY
;
p_new
->
psz_title
=
strdup
(
psz_title
);
p_new
->
psz_description
=
strdup
(
psz_description
);
p_new
->
psz_default_button
=
strdup
(
_
(
"O
k
"
)
);
p_new
->
psz_default_button
=
strdup
(
_
(
"O
K
"
)
);
p_new
->
psz_alternate_button
=
strdup
(
_
(
"Cancel"
)
);
p_new
->
i_flags
=
DIALOG_LOGIN_PW_OK_CANCEL
;
...
...
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