From f89c7710b743f8ae6e70313c214308aa8e1975fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Fri, 2 May 2008 15:54:41 +0000 Subject: [PATCH] * TocModel.h: compile fix. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24584 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/TocModel.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/frontends/qt4/TocModel.h b/src/frontends/qt4/TocModel.h index 8ebbc8d9f4..393577e11a 100644 --- a/src/frontends/qt4/TocModel.h +++ b/src/frontends/qt4/TocModel.h @@ -69,7 +69,7 @@ public: /// TocModels(): bv_(0) {} /// - TocModels::~TocModels() { clear(); } + ~TocModels() { clear(); } /// void reset(BufferView const * bv); /// @@ -77,11 +77,11 @@ public: /// QStandardItemModel * model(int type); /// - QModelIndex TocModels::currentIndex(int type) const; + QModelIndex currentIndex(int type) const; /// void goTo(int type, QModelIndex const & index) const; /// - void TocModels::init(Buffer const & buffer); + void init(Buffer const & buffer); /// Test if outlining operation is possible bool canOutline(int type) const; /// Return the list of types available