summaryrefslogtreecommitdiffstats
path: root/ksystemlog/src/postfix/postfixOptions.h
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-04-03 19:14:45 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-04-03 19:14:45 -0500
commit2d75f12d50a292b836229ae0156d36ed064732ff (patch)
treefa14e2e9e3629ef87dd1943935cd17d52a5378e6 /ksystemlog/src/postfix/postfixOptions.h
parentefde6391f8740c0ff18254d479ba64e468503c49 (diff)
downloadksystemlog-2d75f12d50a292b836229ae0156d36ed064732ff.tar.gz
ksystemlog-2d75f12d50a292b836229ae0156d36ed064732ff.zip
Fix bug with configuring boot.log.
Fixed Cron and Mail text strings for consistency. Fixed configuration dialog width to eliminate scrolling. This partially resolves bug report 336.
Diffstat (limited to 'ksystemlog/src/postfix/postfixOptions.h')
-rw-r--r--ksystemlog/src/postfix/postfixOptions.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/ksystemlog/src/postfix/postfixOptions.h b/ksystemlog/src/postfix/postfixOptions.h
deleted file mode 100644
index d2582e5..0000000
--- a/ksystemlog/src/postfix/postfixOptions.h
+++ /dev/null
@@ -1,60 +0,0 @@
-/***************************************************************************
- * Copyright (C) 2005 by Nicolas Ternisien *
- * nicolas.ternisien@gmail.com *
- * *
- * 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., *
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
- ***************************************************************************/
-
-#ifndef _POSTFIX_OPTIONS_H_
-#define _POSTFIX_OPTIONS_H_
-
-#include <tqframe.h>
-#include <tqspinbox.h>
-
-#include <kpopupmenu.h>
-#include <kconfig.h>
-#include <kdialogbase.h>
-#include <kurlrequester.h>
-#include <kurl.h>
-#include <kaction.h>
-
-#include "globals.h"
-#include "specificFileList.h"
-#include "logLevel.h"
-
-class PostfixOptions : public TQWidget {
- Q_OBJECT
-
- public:
- PostfixOptions(TQWidget *parent = 0);
- ~PostfixOptions();
-
- bool isValid();
- public slots:
- void saveConfig();
- void readConfig();
-
- void slotFileListChanged(int itemLeft);
-
- signals:
- void optionsChanged(bool valid);
-
- private:
-
- SpecificFileList* fileList;
-};
-
-#endif