diff options
| author | 2007-04-24 08:01:01 +0000 | |
|---|---|---|
| committer | 2007-04-24 08:01:01 +0000 | |
| commit | ab2443ea06ba4375f8bfc53f8a2dfa65f6f8a865 (patch) | |
| tree | b0bd9115e2f06d0bf381c03b7f28a3588eb4b008 /src/modules/dcc | |
| parent | update projects (diff) | |
| download | KVIrc-ab2443ea06ba4375f8bfc53f8a2dfa65f6f8a865.tar.gz KVIrc-ab2443ea06ba4375f8bfc53f8a2dfa65f6f8a865.tar.bz2 KVIrc-ab2443ea06ba4375f8bfc53f8a2dfa65f6f8a865.zip | |
normilized width of options dialog, first run wizard, dcc accept boxes
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@533 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/dcc')
| -rw-r--r-- | src/modules/dcc/dialogs.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/modules/dcc/dialogs.cpp b/src/modules/dcc/dialogs.cpp index 639132c7d..c999e53bb 100644 --- a/src/modules/dcc/dialogs.cpp +++ b/src/modules/dcc/dialogs.cpp @@ -55,6 +55,9 @@ KviDccAcceptBox::KviDccAcceptBox(KviDccBroker * br,KviDccDescriptor * dcc,const { QVBoxLayout * vb = new QVBoxLayout(this,4,4); QLabel * l = new QLabel(text,this); +#ifdef COMPILE_USE_QT4 + l->setWordWrap(true); +#endif vb->addWidget(l); QHBoxLayout *hb = new QHBoxLayout(4); vb->addLayout(hb,Qt::AlignCenter); @@ -115,6 +118,9 @@ KviDccRenameBox::KviDccRenameBox(KviDccBroker * br,KviDccDescriptor * dcc,const { QVBoxLayout * vb = new QVBoxLayout(this,4,4); QLabel * l = new QLabel(text,this); +#ifdef COMPILE_USE_QT4 + l->setWordWrap(true); +#endif vb->addWidget(l); QHBoxLayout *hb = new QHBoxLayout(4); |
