From: Lars Gullik Bjønnes Date: Sat, 2 Mar 2002 22:57:10 +0000 (+0000) Subject: make constructor public X-Git-Tag: 1.6.10~19753 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=8f225dc811b35451a8d0ee1cc63ba2eac08d2996;p=features.git make constructor public git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3644 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/support/ChangeLog b/src/support/ChangeLog index 16adb24bfb..3bb81cc556 100644 --- a/src/support/ChangeLog +++ b/src/support/ChangeLog @@ -1,5 +1,7 @@ 2002-03-02 Lars Gullik Bjønnes + * forkedcontr.h: make constructor public + * types.h: remove layout_type 2002-03-01 Angus Leeming diff --git a/src/support/forkedcontr.h b/src/support/forkedcontr.h index c443a5da1b..8afd8cf936 100644 --- a/src/support/forkedcontr.h +++ b/src/support/forkedcontr.h @@ -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 childrenChanged; private: - /// Can't create multiple instances of ForkedcallsController. - ForkedcallsController(); /// ForkedcallsController(ForkedcallsController const &);