]> git.lyx.org Git - features.git/commitdiff
make constructor public
authorLars Gullik Bjønnes <larsbj@gullik.org>
Sat, 2 Mar 2002 22:57:10 +0000 (22:57 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Sat, 2 Mar 2002 22:57:10 +0000 (22:57 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3644 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/ChangeLog
src/support/forkedcontr.h

index 16adb24bfb9035b634853fe8874f40d43718c2a8..3bb81cc55662afa9c8e8c32cc807561eb590ae3b 100644 (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>
index c443a5da1ba3c38131dfc47dd5fbe6e1a2d42eec..8afd8cf9365dd501ea1b9089c3b27a916f39a43c 100644 (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 &);