[vlc-devel] commit: use OK instead of Ok (Jean-Baptiste Kempf )

git version control git at videolan.org
Wed Jul 9 22:07:35 CEST 2008


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Jul  9 11:45:59 2008 -0700| [62557bbace8fcdafe2bdf620c8dcb757ac71120d]

use OK instead of Ok

Same as previous

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=62557bbace8fcdafe2bdf620c8dcb757ac71120d
---

 modules/gui/qt4/components/open_panels.cpp |    2 +-
 modules/gui/qt4/main_interface.cpp         |    2 +-
 src/interface/interaction.c                |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/gui/qt4/components/open_panels.cpp b/modules/gui/qt4/components/open_panels.cpp
index 38635eb..94e17c2 100644
--- a/modules/gui/qt4/components/open_panels.cpp
+++ b/modules/gui/qt4/components/open_panels.cpp
@@ -1129,7 +1129,7 @@ void CaptureOpenPanel::advancedDialog()
 
     /* Button stuffs */
     QDialogButtonBox *advButtonBox = new QDialogButtonBox( adv );
-    QPushButton *closeButton = new QPushButton( qtr( "Ok" ) );
+    QPushButton *closeButton = new QPushButton( qtr( "OK" ) );
     QPushButton *cancelButton = new QPushButton( qtr( "Cancel" ) );
 
     CONNECT( closeButton, clicked(), adv, accept() );
diff --git a/modules/gui/qt4/main_interface.cpp b/modules/gui/qt4/main_interface.cpp
index a95701a..278da48 100644
--- a/modules/gui/qt4/main_interface.cpp
+++ b/modules/gui/qt4/main_interface.cpp
@@ -521,7 +521,7 @@ int MainInterface::privacyDialog( QList<ConfigControl *> controls )
     CONFIG_GENERIC_NOBOOL( "qt-updates-days", Integer ); line++;
 #endif
 
-    QPushButton *ok = new QPushButton( qtr( "Ok" ) );
+    QPushButton *ok = new QPushButton( qtr( "OK" ) );
 
     gLayout->addWidget( ok, 2, 2 );
 
diff --git a/src/interface/interaction.c b/src/interface/interaction.c
index 6eab001..633ea49 100644
--- a/src/interface/interaction.c
+++ b/src/interface/interaction.c
@@ -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( _("Ok" ) );
+    p_new->psz_default_button = strdup( _("OK" ) );
     p_new->psz_alternate_button = strdup( _("Cancel" ) );
 
     p_new->i_flags = DIALOG_LOGIN_PW_OK_CANCEL;




More information about the vlc-devel mailing list