summaryrefslogtreecommitdiff
path: root/core/pim/todo/newtaskdlg.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/todo/newtaskdlg.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/newtaskdlg.cpp56
1 files changed, 29 insertions, 27 deletions
diff --git a/core/pim/todo/newtaskdlg.cpp b/core/pim/todo/newtaskdlg.cpp
index 0b5a29d..68a0d24 100644
--- a/core/pim/todo/newtaskdlg.cpp
+++ b/core/pim/todo/newtaskdlg.cpp
@@ -1,29 +1,31 @@
/*
- =. This file is part of the OPIE Project
- .=l. Copyright (c) 2005 Dan Williams <drw@handhelds.org>
- .>+-=
-_;:, .> :=|. This program is free software; you can
-.> <`_, > . <= redistribute it and/or modify it under
-:`=1 )Y*s>-.-- : the terms of the GNU General Public
-.="- .-=="i, .._ License as published by the Free Software
-- . .-<_> .<> Foundation; either version 2 of the License,
- ._= =} : or (at your option) any later version.
- .%`+i> _;_.
- .i_,=:_. -<s. This program is distributed in the hope that
- + . -:. = it will be useful, but WITHOUT ANY WARRANTY;
- : .. .:, . . . without even the implied warranty of
- =_ + =;=|` MERCHANTABILITY or FITNESS FOR A
- _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU
-..}^=.= = ; Library General Public License for more
-++= -. .` .: details.
-: = ...= . :.=-
--. .:....=;==+<; You should have received a copy of the GNU
- -_. . . )=. = General Public License along with
- -- :-=` this library; see the file COPYING.LIB.
+                 This file is part of the Opie Project
+
+ Copyright (C) Opie Team <opie-devel@handhelds.org>
+ =.
+ .=l.
+           .>+-=
+ _;:,     .>    :=|. This program is free software; you can
+.> <`_,   >  .   <= redistribute it and/or modify it under
+:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
+.="- .-=="i,     .._ License as published by the Free Software
+ - .   .-<_>     .<> Foundation; either version 2 of the License,
+     ._= =}       : or (at your option) any later version.
+    .%`+i>       _;_.
+    .i_,=:_.      -<s. This program is distributed in the hope that
+     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
+ : ..    .:,     . . . without even the implied warranty of
+    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
+  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
+..}^=.=       =       ; Library General Public License for more
+++=   -.     .`     .: details.
+:     =  ...= . :.=-
+ -.   .:....=;==+<; You should have received a copy of the GNU
+  -_. . .   )=.  = Library General Public License along with
+    --        :-=` this library; see the file COPYING.LIB.
If not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
-
*/
#include "newtaskdlg.h"
@@ -40,16 +42,16 @@ NewTaskDlg::NewTaskDlg( const QStringList &templates, QWidget *parent )
QButtonGroup *bg = new QButtonGroup( this );
bg->hide();
-
+
QVBoxLayout *layout = new QVBoxLayout( this, 10, 3 );
QRadioButton *btn = new QRadioButton( tr( "Blank task" ), this );
btn->setChecked( true );
bg->insert( btn );
layout->addWidget( btn );
-
+
layout->addStretch();
-
+
m_useTemplate = new QRadioButton( tr( "Using template:" ), this );
connect( m_useTemplate, SIGNAL(toggled(bool)), this, SLOT(slotUseTemplate(bool)) );
bg->insert( m_useTemplate );
@@ -59,12 +61,12 @@ NewTaskDlg::NewTaskDlg( const QStringList &templates, QWidget *parent )
m_templateList->insertStringList( templates );
m_templateList->setEnabled( false );
layout->addWidget( m_templateList );
-
+
layout->addStretch();
}
QString NewTaskDlg::tempSelected() {
- QString tempStr;
+ QString tempStr;
if ( m_useTemplate->isChecked() )
tempStr = m_templateList->currentText();