aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/theme/savethemedialog.cpp
diff options
context:
space:
mode:
authorGravatar Noldor2008-05-04 17:16:21 +0000
committerGravatar Noldor2008-05-04 17:16:21 +0000
commita7db13d3efd84923fb824a0a12c06cf71c1b4f85 (patch)
treed2706d65c9f5125a3c5becb98bcebaf9a70df7b3 /src/modules/theme/savethemedialog.cpp
parentmore theme dialog QT4 port (wip) (diff)
downloadKVIrc-a7db13d3efd84923fb824a0a12c06cf71c1b4f85.tar.gz
KVIrc-a7db13d3efd84923fb824a0a12c06cf71c1b4f85.tar.bz2
KVIrc-a7db13d3efd84923fb824a0a12c06cf71c1b4f85.zip
code cleanup
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@1670 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/theme/savethemedialog.cpp')
-rw-r--r--src/modules/theme/savethemedialog.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/theme/savethemedialog.cpp b/src/modules/theme/savethemedialog.cpp
index 8831cf76f..527f62a26 100644
--- a/src/modules/theme/savethemedialog.cpp
+++ b/src/modules/theme/savethemedialog.cpp
@@ -70,6 +70,7 @@ KviSaveThemeDialog::KviSaveThemeDialog(QWidget * pParent)
QGridLayout * pLayout = new QGridLayout(pPage);
QLabel * pLabel = new QLabel(pPage);
+ pLabel->setWordWrap(true);
QString szText = "<p>";
szText += __tr2qs_ctx("This procedure allows you to save the current theme settings to a single directory. It is useful if you want to apply other themes or play with the theme settings and later come back to this theme with a single click. It will also allow you to manually modify the theme settings and later export them to a distributable package.","theme");
szText += "</p><p>";
@@ -95,6 +96,7 @@ KviSaveThemeDialog::KviSaveThemeDialog(QWidget * pParent)
pLabel = new QLabel(pPage);
pLabel->setText(__tr2qs_ctx("Here you need to provide informations about you (the author) and a short description of the theme you're creating.","theme"));
+ pLabel->setWordWrap(true);
pLabel->setTextFormat(Qt::RichText);
pLayout->addMultiCellWidget(pLabel,0,0,0,1);
@@ -147,7 +149,7 @@ KviSaveThemeDialog::KviSaveThemeDialog(QWidget * pParent)
pLabel = new QLabel(pPage);
pLabel->setText(__tr2qs_ctx("Here you can either choose a screenshot image from disk or make one now. The screenshot will be displayed in the tooltips of the theme management dialog and will be also visible in the package installation dialog if you will export the theme to a distributable package.","theme"));
- pLabel->setWordWrap(true);
+ pLabel->setWordWrap(true);
pLabel->setTextFormat(Qt::RichText);
pLayout->addWidget(pLabel,0,0);