From 243da49ee9877c35f687864ada2c4be227c7c70e Mon Sep 17 00:00:00 2001 From: Vincent van Ravesteijn Date: Wed, 15 Jul 2009 20:32:16 +0000 Subject: [PATCH] Remove nonsense comment. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30611 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetInfo.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/insets/InsetInfo.h b/src/insets/InsetInfo.h index bac475866f..e48418d50d 100644 --- a/src/insets/InsetInfo.h +++ b/src/insets/InsetInfo.h @@ -75,9 +75,7 @@ the command buffer (view->Toolbar->Command Buffer). namespace lyx { -/** Used to insert index labels - */ -class InsetInfo : public InsetCollapsable { +class InsetInfo : public InsetText { public: enum info_type { UNKNOWN_INFO, // Invalid type @@ -138,7 +136,7 @@ private: /// void setText(docstring const & str); // make sure that the other version of setText is still available. - using InsetCollapsable::setText; + using InsetText::setText; /// info_type type_; /// @@ -146,7 +144,6 @@ private: }; - } // namespace lyx #endif