author | zautrix <zautrix> | 2005-06-15 21:57:17 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-15 21:57:17 (UTC) |
commit | b8b1547f1f4ae54ace16e5faf55aad1274ec2e57 (patch) (side-by-side diff) | |
tree | 77f755fca963e0ee7675e5948fdcf4f98ba46582 | |
parent | 4a9b5ad578e991f6216dc0556022a76223165f15 (diff) | |
download | kdepimpi-b8b1547f1f4ae54ace16e5faf55aad1274ec2e57.zip kdepimpi-b8b1547f1f4ae54ace16e5faf55aad1274ec2e57.tar.gz kdepimpi-b8b1547f1f4ae54ace16e5faf55aad1274ec2e57.tar.bz2 |
compile fix
-rw-r--r-- | korganizer/kofilterview.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/korganizer/kofilterview.h b/korganizer/kofilterview.h index 945947a..5495d60 100644 --- a/korganizer/kofilterview.h +++ b/korganizer/kofilterview.h @@ -1,77 +1,78 @@ /* This file is part of KOrganizer. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. As a special exception, permission is given to link this program with any edition of Qt, and distribute the resulting executable, without including the source code for Qt in the source distribution. */ #ifndef KOFILTERVIEW_H #define KOFILTERVIEW_H #include <qstring.h> #include <qcheckbox.h> #include <qlayout.h> #include <qlabel.h> +#include <qdialog.h> #include <qscrollview.h> #include <qpushbutton.h> #include <kconfig.h> #include "kofilterview_base.h" #include <libkcal/calfilter.h> #include <kurlrequester.h> #include <klineedit.h> #include <kglobal.h> #include <kmessagebox.h> class QGridLayout; using namespace KCal; class KONewCalPrefs : public QDialog { Q_OBJECT public: KONewCalPrefs( QWidget *parent=0, const char *name=0 ) : QDialog( parent, name, true ) { setCaption( i18n("Add new Calendar") ); QVBoxLayout* lay = new QVBoxLayout( this ); lay->setSpacing( 3 ); lay->setMargin( 3 ); QLabel * lab = new QLabel( i18n("<b>Name of new calendar:</b>"), this ); lay->addWidget( lab ); nameE = new KLineEdit( this ); lay->addWidget( nameE ); lab = new QLabel( i18n("<b>Local ical (*.ics) file:</b>"), this ); lay->addWidget( lab ); url = new KURLRequester ( this ); lay->addWidget( url ); QPushButton * ok = new QPushButton( i18n("OK"), this ); lay->addWidget( ok ); QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); lay->addWidget( cancel ); connect ( ok,SIGNAL(clicked() ),this , SLOT ( checkValid() ) ); connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); setMinimumWidth( 220 ); resize(sizeHint() ); } QString calName() { return nameE->text(); } QString calFileName() { return url->url(); } |