author | cniehaus <cniehaus> | 2002-12-28 17:10:19 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2002-12-28 17:10:19 (UTC) |
commit | 5d318b693ab687569051712f5079353ebcb6e659 (patch) (unidiff) | |
tree | fdc54cc31b83e23aaf5b59ac9d8131cf0c0bd158 | |
parent | 6f71f59df05e634e59cd9ce44f785bd70429284a (diff) | |
download | opie-5d318b693ab687569051712f5079353ebcb6e659.zip opie-5d318b693ab687569051712f5079353ebcb6e659.tar.gz opie-5d318b693ab687569051712f5079353ebcb6e659.tar.bz2 |
@@ -37,7 +37,7 @@ MainWindow :: MainWindow( QWidget *p, ch
showMaximized();
#endif
- setCaption( "AQPkg - Package Manager" );
+ setCaption( tr( "AQPkg - Package Manager" ) );
// Create our menu
help = new QPopupMenu( this );
-rw-r--r-- | noncore/settings/aqpkg/mainwin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/aqpkg/mainwin.cpp b/noncore/settings/aqpkg/mainwin.cpp index 3ddc582..5f0dabb 100644 --- a/noncore/settings/aqpkg/mainwin.cpp +++ b/noncore/settings/aqpkg/mainwin.cpp | |||
@@ -34,13 +34,13 @@ MainWindow :: MainWindow( QWidget *p, char *name ) | |||
34 | :QMainWindow( p, name ) | 34 | :QMainWindow( p, name ) |
35 | { | 35 | { |
36 | #ifdef QWS | 36 | #ifdef QWS |
37 | showMaximized(); | 37 | showMaximized(); |
38 | #endif | 38 | #endif |
39 | 39 | ||
40 | setCaption( "AQPkg - Package Manager" ); | 40 | setCaption( tr( "AQPkg - Package Manager" ) ); |
41 | 41 | ||
42 | // Create our menu | 42 | // Create our menu |
43 | help = new QPopupMenu( this ); | 43 | help = new QPopupMenu( this ); |
44 | help->insertItem( "&General", this, SLOT(displayHelp()), Qt::CTRL+Qt::Key_G ); | 44 | help->insertItem( "&General", this, SLOT(displayHelp()), Qt::CTRL+Qt::Key_G ); |
45 | help->insertItem( "&About", this, SLOT(displayAbout()), Qt::CTRL+Qt::Key_A ); | 45 | help->insertItem( "&About", this, SLOT(displayAbout()), Qt::CTRL+Qt::Key_A ); |
46 | 46 | ||