make constructor public

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3644 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2002-03-02 22:57:10 +00:00
parent 4b348558bb
commit 8f225dc811
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
2002-03-02 Lars Gullik Bjønnes <larsbj@birdstep.com>
* forkedcontr.h: make constructor public
* types.h: remove layout_type
2002-03-01 Angus Leeming <a.leeming@ic.ac.uk>

View File

@ -29,6 +29,8 @@ class Timeout;
class ForkedcallsController : public SigC::Object {
public:
/// We need this to avoid warnings.
ForkedcallsController();
/** This d-tor should really be private, but making it public
* allows egcs 1.1 to compile the class.
*/
@ -63,8 +65,6 @@ public:
SigC::Signal0<void> childrenChanged;
private:
/// Can't create multiple instances of ForkedcallsController.
ForkedcallsController();
///
ForkedcallsController(ForkedcallsController const &);