author | sandman <sandman> | 2002-12-22 16:37:07 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-12-22 16:37:07 (UTC) |
commit | 150e066a847e8e10848cfd10a635b9cec57347b3 (patch) (unidiff) | |
tree | 8e16dec1950321db67455b0011b79fcae0469c68 | |
parent | 9ee5295d934e0876dfe0b7e0a4ee05012c491f91 (diff) | |
download | opie-150e066a847e8e10848cfd10a635b9cec57347b3.zip opie-150e066a847e8e10848cfd10a635b9cec57347b3.tar.gz opie-150e066a847e8e10848cfd10a635b9cec57347b3.tar.bz2 |
Fixed some window captions to match the corresponding launcher icons
-rw-r--r-- | noncore/settings/appearance2/appearance.cpp | 2 | ||||
-rw-r--r-- | noncore/settings/language/languagesettingsbase.ui | 2 | ||||
-rw-r--r-- | noncore/settings/mediummount/mainwindow.cc | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/noncore/settings/appearance2/appearance.cpp b/noncore/settings/appearance2/appearance.cpp index e9e0ad9..2b35119 100644 --- a/noncore/settings/appearance2/appearance.cpp +++ b/noncore/settings/appearance2/appearance.cpp | |||
@@ -404,13 +404,13 @@ QWidget *Appearance::createAdvancedTab ( QWidget *parent, Config &cfg ) | |||
404 | } | 404 | } |
405 | 405 | ||
406 | 406 | ||
407 | Appearance::Appearance( QWidget* parent, const char* name, WFlags ) | 407 | Appearance::Appearance( QWidget* parent, const char* name, WFlags ) |
408 | : QDialog ( parent, name, true, WStyle_ContextHelp ) | 408 | : QDialog ( parent, name, true, WStyle_ContextHelp ) |
409 | { | 409 | { |
410 | setCaption( tr( "Appearance" ) ); | 410 | setCaption( tr( "Appearance Settings" ) ); |
411 | 411 | ||
412 | Config config( "qpe" ); | 412 | Config config( "qpe" ); |
413 | config.setGroup( "Appearance" ); | 413 | config.setGroup( "Appearance" ); |
414 | 414 | ||
415 | QVBoxLayout *top = new QVBoxLayout ( this, 3, 3 ); | 415 | QVBoxLayout *top = new QVBoxLayout ( this, 3, 3 ); |
416 | 416 | ||
diff --git a/noncore/settings/language/languagesettingsbase.ui b/noncore/settings/language/languagesettingsbase.ui index 62bdafa..ae317e4 100644 --- a/noncore/settings/language/languagesettingsbase.ui +++ b/noncore/settings/language/languagesettingsbase.ui | |||
@@ -14,13 +14,13 @@ | |||
14 | <width>369</width> | 14 | <width>369</width> |
15 | <height>492</height> | 15 | <height>492</height> |
16 | </rect> | 16 | </rect> |
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
19 | <name>caption</name> | 19 | <name>caption</name> |
20 | <string>Language</string> | 20 | <string>Language Settings</string> |
21 | </property> | 21 | </property> |
22 | <vbox> | 22 | <vbox> |
23 | <property stdset="1"> | 23 | <property stdset="1"> |
24 | <name>margin</name> | 24 | <name>margin</name> |
25 | <number>11</number> | 25 | <number>11</number> |
26 | </property> | 26 | </property> |
diff --git a/noncore/settings/mediummount/mainwindow.cc b/noncore/settings/mediummount/mainwindow.cc index cf8ad6c..6d9bb80 100644 --- a/noncore/settings/mediummount/mainwindow.cc +++ b/noncore/settings/mediummount/mainwindow.cc | |||
@@ -14,12 +14,14 @@ using namespace MediumMountSetting; | |||
14 | 14 | ||
15 | 15 | ||
16 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags ) | 16 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags ) |
17 | : QMainWindow( parent, name, WStyle_ContextHelp ) | 17 | : QMainWindow( parent, name, WStyle_ContextHelp ) |
18 | 18 | ||
19 | { | 19 | { |
20 | setCaption ( tr( "Medium Mount Settings" )); | ||
21 | |||
20 | // m_lay = new QVBoxLayout( this ); | 22 | // m_lay = new QVBoxLayout( this ); |
21 | m_tab = new QTabWidget( this ); | 23 | m_tab = new QTabWidget( this ); |
22 | setCentralWidget( m_tab ); | 24 | setCentralWidget( m_tab ); |
23 | init(); | 25 | init(); |
24 | } | 26 | } |
25 | 27 | ||