summaryrefslogtreecommitdiffabout
path: root/korganizer/koeventview.h
Side-by-side diff
Diffstat (limited to 'korganizer/koeventview.h') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/koeventview.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/korganizer/koeventview.h b/korganizer/koeventview.h
index 77ec111..f28e68b 100644
--- a/korganizer/koeventview.h
+++ b/korganizer/koeventview.h
@@ -21,24 +21,26 @@
with any edition of Qt, and distribute the resulting executable,
without including the source code for Qt in the source distribution.
*/
#ifndef _KOEVENTVIEW_H
#define _KOEVENTVIEW_H
#include <libkcal/calendar.h>
#include <libkcal/event.h>
#include <korganizer/baseview.h>
#include "koeventpopupmenu.h"
+//Added by qt3to4:
+#include <Q3PopupMenu>
using namespace KCal;
class CalPrinter;
/**
KOEventView is the abstract base class from which all other
calendar views for event data are derived. It provides methods for
displaying
appointments and events on one or more days. The actual number of
days that a view actually supports is not defined by this abstract class;
that is up to the classes that inherit from it. It also provides
@@ -78,25 +80,25 @@ class KOEventView : public KOrg::BaseView
KOEventPopupMenu *eventPopup();
/** This view is an view for displaying events. */
bool isEventView() { return true; }
public slots:
/**
* Show context menu for event.
* @param event event, which is to be manipulated by the menu actions
* @param popup a popop menu created with eventPopup()
*/
- void showIncidencePopup(QPopupMenu *popup, Incidence *event);
+ void showIncidencePopup(Q3PopupMenu *popup, Incidence *event);
/**
Perform the default action for an incidence, e.g. open the event editor,
when double-clicking an event in the agenda view.
*/
void defaultAction( Incidence * );
signals:
/**
* when the view changes the dates that are selected in one way or
* another, this signal is emitted. It should be connected back to
* the @see KDateNavigator object so that it changes appropriately,