Tiny clean-ups.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3569 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-02-19 15:01:58 +00:00
parent 028020876f
commit cf736d158e
3 changed files with 8 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2002-02-19 Angus Leeming <a.leeming@ic.ac.uk>
* FormBase.h (FormCB): tiny bugfix.
* xforms_helpers.h: remove incorrect comment.
2002-02-18 Angus Leeming <a.leeming@ic.ac.uk>
* Timeout_pimpl.[Ch] (running): new method.

View File

@ -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 <class Controller, class Base>
FormCB<Controller, Base>::FormCB(ControlButtons & c, string const & t,
FormCB<Controller, Base>::FormCB(Controller & c, string const & t,
bool allowResize)
: Base(c, t, allowResize)
{}

View File

@ -48,9 +48,6 @@ std::vector<string> 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).
*/