summaryrefslogtreecommitdiffabout
path: root/korganizer/interfaces/korganizer/calendarviewbase.h
Side-by-side diff
Diffstat (limited to 'korganizer/interfaces/korganizer/calendarviewbase.h') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/interfaces/korganizer/calendarviewbase.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/korganizer/interfaces/korganizer/calendarviewbase.h b/korganizer/interfaces/korganizer/calendarviewbase.h
index 3c715b1..1f49357 100644
--- a/korganizer/interfaces/korganizer/calendarviewbase.h
+++ b/korganizer/interfaces/korganizer/calendarviewbase.h
@@ -14,42 +14,44 @@
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.
*/
#ifndef KORG_CALENDARVIEWBASE_H
#define KORG_CALENDARVIEWBASE_H
// $Id$
#include <qwidget.h>
#include <qlayout.h>
+//Added by qt3to4:
+#include <Q3VBoxLayout>
#include <libkcal/calendar.h>
#include <korganizer/baseview.h>
namespace KOrg {
/**
@short interface for main calendar view widget
@author Cornelius Schumacher
*/
class CalendarViewBase : public QWidget
{
Q_OBJECT
public:
CalendarViewBase(QWidget *parent, const char *name) :
- QWidget(parent,name) {new QVBoxLayout(this);}
+ QWidget(parent,name) {new Q3VBoxLayout(this);}
virtual ~CalendarViewBase() {};
virtual KCal::Calendar *calendar() = 0;
virtual QDate startDate() = 0;
virtual QDate endDate() = 0;
virtual Incidence *currentSelection() = 0;
virtual void addView(KOrg::BaseView *) = 0;
/** changes the view to be the currently selected view */