summaryrefslogtreecommitdiffabout
path: root/korganizer/journalentry.cpp
authorzautrix <zautrix>2005-06-30 04:35:32 (UTC)
committer zautrix <zautrix>2005-06-30 04:35:32 (UTC)
commit63147898391dbeabca2dc8f48730b324c15a7498 (patch) (side-by-side diff)
tree6f42b6fc1d95ee584d44deb50726e94c02f986e5 /korganizer/journalentry.cpp
parent54dd512d3980381c2b02263462db03ae7c5a0264 (diff)
downloadkdepimpi-63147898391dbeabca2dc8f48730b324c15a7498.zip
kdepimpi-63147898391dbeabca2dc8f48730b324c15a7498.tar.gz
kdepimpi-63147898391dbeabca2dc8f48730b324c15a7498.tar.bz2
fixxi
Diffstat (limited to 'korganizer/journalentry.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/journalentry.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/korganizer/journalentry.cpp b/korganizer/journalentry.cpp
index 232ea58..58863fe 100644
--- a/korganizer/journalentry.cpp
+++ b/korganizer/journalentry.cpp
@@ -69,8 +69,6 @@ JournalEntry::JournalEntry(Calendar *calendar,QWidget *parent) :
QPushButton * toggleJournal = new QPushButton( vb );
icon = SmallIcon("1updownarrow");
toggleJournal->setIconSet (icon ) ;
- int size = toggleJournal->sizeHint().height();
- toggleJournal->setFixedSize( size * 2 /3 , size );
new QLabel(i18n(" Title: "),vb);
mTitle = new KLineEdit ( vb );
mTitleLabel = new QLabel(i18n("Title"),vb);
@@ -83,14 +81,15 @@ JournalEntry::JournalEntry(Calendar *calendar,QWidget *parent) :
else
icon = SmallIcon("fileexport");
saveTemplate->setIconSet (icon ) ;
- //size = saveTemplate->sizeHint().height();
- saveTemplate->setFixedSize( size, size );
+ int size = saveTemplate->sizeHint().height();
if ( QApplication::desktop()->width() < 321 )
icon = SmallIcon("fileimport16");
else
icon = SmallIcon("fileimport");
loadTemplate->setIconSet (icon ) ;
loadTemplate->setFixedSize( size, size );
+ saveTemplate->setFixedSize( size, size );
+ toggleJournal->setFixedSize( size , size );
mEditor = new KTextEdit(this);
connect(mEditor,SIGNAL(textChanged()),SLOT(setDirty()));
#ifndef DESKTOP_VERSION