summaryrefslogtreecommitdiff
path: root/noncore/settings/mediummount
authorllornkcor <llornkcor>2002-10-26 14:55:38 (UTC)
committer llornkcor <llornkcor>2002-10-26 14:55:38 (UTC)
commit49f3af452f5011adb3a9042dc001a1d93da3c2ba (patch) (unidiff)
tree3d094974dfea25454f982d1ffa26f74962ca4431 /noncore/settings/mediummount
parenta4a1722ba3a2874adef57e0c04093814c0dc4f8f (diff)
downloadopie-49f3af452f5011adb3a9042dc001a1d93da3c2ba.zip
opie-49f3af452f5011adb3a9042dc001a1d93da3c2ba.tar.gz
opie-49f3af452f5011adb3a9042dc001a1d93da3c2ba.tar.bz2
moved large text to context help, so controls fit into window. may need more context help for individual controls
Diffstat (limited to 'noncore/settings/mediummount') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/mediummount/mainwindow.cc4
-rw-r--r--noncore/settings/mediummount/mainwindow.h2
-rw-r--r--noncore/settings/mediummount/mediumglobal.cc5
3 files changed, 7 insertions, 4 deletions
diff --git a/noncore/settings/mediummount/mainwindow.cc b/noncore/settings/mediummount/mainwindow.cc
index 88f7c61..cf8ad6c 100644
--- a/noncore/settings/mediummount/mainwindow.cc
+++ b/noncore/settings/mediummount/mainwindow.cc
@@ -14,6 +14,6 @@ using namespace MediumMountSetting;
14 14
15 15
16MainWindow::MainWindow( QWidget *parent, const char *name ) 16MainWindow::MainWindow( QWidget *parent, const char *name, WFlags )
17 : QMainWindow( parent, name ) 17 : QMainWindow( parent, name, WStyle_ContextHelp )
18 18
19{ 19{
diff --git a/noncore/settings/mediummount/mainwindow.h b/noncore/settings/mediummount/mainwindow.h
index 1e60e12..ce54674 100644
--- a/noncore/settings/mediummount/mainwindow.h
+++ b/noncore/settings/mediummount/mainwindow.h
@@ -16,5 +16,5 @@ namespace MediumMountSetting {
16 Q_OBJECT 16 Q_OBJECT
17 public: 17 public:
18 MainWindow(QWidget *parent = 0, const char *name = 0 ); 18 MainWindow(QWidget *parent = 0, const char *name = 0 , WFlags = 0);
19 ~MainWindow(); 19 ~MainWindow();
20 20
diff --git a/noncore/settings/mediummount/mediumglobal.cc b/noncore/settings/mediummount/mediumglobal.cc
index 921fcd1..c1ad415 100644
--- a/noncore/settings/mediummount/mediumglobal.cc
+++ b/noncore/settings/mediummount/mediumglobal.cc
@@ -8,4 +8,5 @@
8#include <qframe.h> 8#include <qframe.h>
9#include <qgroupbox.h> 9#include <qgroupbox.h>
10#include <qwhatsthis.h>
10 11
11#include <qpe/config.h> 12#include <qpe/config.h>
@@ -32,5 +33,6 @@ void MediumGlobalWidget::initGUI()
32 m_label = new QLabel( this ); 33 m_label = new QLabel( this );
33 m_label->setTextFormat( Qt::RichText ); 34 m_label->setTextFormat( Qt::RichText );
34 m_label->setText( tr("If a medium gets inserted into this device Opie " 35 m_label->setText( tr("") );
36 QWhatsThis::add( this, ("If a medium gets inserted into this device Opie "
35 "tries to search the medium for Dcouments. On " 37 "tries to search the medium for Dcouments. On "
36 "large mediums this can take some time. You can choose " 38 "large mediums this can take some time. You can choose "
@@ -39,4 +41,5 @@ void MediumGlobalWidget::initGUI()
39 "each medium." 41 "each medium."
40 ) ); 42 ) );
43
41 m_layout->addWidget( m_label ); 44 m_layout->addWidget( m_label );
42 45