From kde-commits Sun Sep 30 22:06:05 2007 From: Inge Wallin Date: Sun, 30 Sep 2007 22:06:05 +0000 To: kde-commits Subject: koffice/interfaces Message-Id: <1191189965.627703.13469.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=119118997330953 SVN commit 719325 by ingwa: Use a real model instead of an interface M +2 -1 koChart.h --- trunk/koffice/interfaces/koChart.h #719324:719325 @@ -26,6 +26,7 @@ class QAbstractItemModel; +class QStandardItemModel; namespace KoChart { @@ -90,7 +91,7 @@ ChartInterface(); virtual ~ChartInterface(); - virtual void setModel( QAbstractItemModel* model ) = 0; + virtual void setModel( QStandardItemModel* model ) = 0; }; }