From: Angus Leeming Date: Tue, 19 Feb 2002 15:01:58 +0000 (+0000) Subject: Tiny clean-ups. X-Git-Tag: 1.6.10~19827 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=cf736d158e6efb23593dd7d608aa3764e1499096;p=features.git Tiny clean-ups. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3569 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/xforms/ChangeLog b/src/frontends/xforms/ChangeLog index d32e2981bc..d089a30aa0 100644 --- a/src/frontends/xforms/ChangeLog +++ b/src/frontends/xforms/ChangeLog @@ -1,3 +1,9 @@ +2002-02-19 Angus Leeming + + * FormBase.h (FormCB): tiny bugfix. + + * xforms_helpers.h: remove incorrect comment. + 2002-02-18 Angus Leeming * Timeout_pimpl.[Ch] (running): new method. diff --git a/src/frontends/xforms/FormBase.h b/src/frontends/xforms/FormBase.h index 4cbc0d2f48..d0b66e6c97 100644 --- a/src/frontends/xforms/FormBase.h +++ b/src/frontends/xforms/FormBase.h @@ -156,14 +156,14 @@ class FormCB: public Base { protected: /// - FormCB(ControlButtons &, string const &, bool allowResize=true); + FormCB(Controller &, string const &, bool allowResize=true); /// The parent controller Controller & controller() const; }; template -FormCB::FormCB(ControlButtons & c, string const & t, +FormCB::FormCB(Controller & c, string const & t, bool allowResize) : Base(c, t, allowResize) {} diff --git a/src/frontends/xforms/xforms_helpers.h b/src/frontends/xforms/xforms_helpers.h index c60e29b2eb..3630765465 100644 --- a/src/frontends/xforms/xforms_helpers.h +++ b/src/frontends/xforms/xforms_helpers.h @@ -48,9 +48,6 @@ std::vector const getVectorFromBrowser(FL_OBJECT *); /// Given an fl_input, return its contents. string const getStringFromInput(FL_OBJECT * ob); -/** Given an fl_browser, return the contents of the currently - highlighted line. -*/ /** Given an fl_browser, return the contents of line (xforms numbering convention; starts at 1). */