summaryrefslogtreecommitdiffabout
path: root/korganizer/kolocationbox.h
Side-by-side diff
Diffstat (limited to 'korganizer/kolocationbox.h') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/kolocationbox.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/korganizer/kolocationbox.h b/korganizer/kolocationbox.h
index b604d33..6a42de6 100644
--- a/korganizer/kolocationbox.h
+++ b/korganizer/kolocationbox.h
@@ -23,33 +23,33 @@
with any edition of Qt, and distribute the resulting executable,
without including the source code for Qt in the source distribution.
*/
#ifndef KOLOCATIONBOX_H
#define KOLOCATIONBOX_H
#include <qcombobox.h>
#include "koprefs.h"
class KOLocationBox : public QComboBox
{
public:
KOLocationBox( bool rw , QWidget *parent , int _maxItems );
virtual ~KOLocationBox();
- enum {LOCATION, SUMMARYEVENT, SUMMARYTODO};
+ enum {LOCATION, SUMMARYEVENT, SUMMARYTODO,SUMMARYJOURNAL};
public slots:
void load(int);
void save(int);
void clearItems(int); // clear listbox and config rc items
protected:
// void focusOutEvent( QFocusEvent * );
// void timerEvent( QTimerEvent * );
private:
int maxItems; // maximal listbox items
QStringList strlist; // temporary stringlist
};
#endif