diff options
| author | 2007-03-02 13:45:10 +0000 | |
|---|---|---|
| committer | 2007-03-02 13:45:10 +0000 | |
| commit | 2969fcb386f34afc66ddd7c4e4c1a0e73769fd31 (patch) | |
| tree | 4ace79953e1a2635a945696e59fa67a10bb51ca0 /src/modules/options/dialog.cpp | |
| parent | fix (diff) | |
| download | KVIrc-2969fcb386f34afc66ddd7c4e4c1a0e73769fd31.tar.gz KVIrc-2969fcb386f34afc66ddd7c4e4c1a0e73769fd31.tar.bz2 KVIrc-2969fcb386f34afc66ddd7c4e4c1a0e73769fd31.zip | |
fix compilation error
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@399 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/options/dialog.cpp')
| -rw-r--r-- | src/modules/options/dialog.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/options/dialog.cpp b/src/modules/options/dialog.cpp index 00f6fbf16..a83189dfe 100644 --- a/src/modules/options/dialog.cpp +++ b/src/modules/options/dialog.cpp @@ -70,7 +70,9 @@ KviGeneralOptionsFrontWidget::KviGeneralOptionsFrontWidget(QWidget *parent,const { createLayout(1,1); QLabel * l = new QLabel(szText,this); +#ifdef COMPILE_USE_QT4 l->setWordWrap(true); +#endif l->setAlignment(Qt::AlignTop); layout()->addWidget(l,0,0); } @@ -138,7 +140,7 @@ KviOptionsDialog::KviOptionsDialog(QWidget * par,const QString &szGroup) szDialogTitle = __tr2qs_ctx("KVIrc Preferences","options"); } - QString szDialog = __tr2qs_ctx("This dialog contains a set of KVIrc settings. Use the icons " \ + QString szDialog = __tr2qs_ctx("This dialog contains a set of KVIrc settings.<br> Use the icons " \ "on the left to navigate through the option pages. The text box in the " \ "bottom left corner is a small search engine. It will highlight the " \ "pages that contain options related to the search term you have entered.","options"); |
