]> git.lyx.org Git - features.git/commitdiff
Make the d-tor public to make Dekel's compiler happy.
authorAngus Leeming <leeming@lyx.org>
Fri, 1 Mar 2002 17:12:13 +0000 (17:12 +0000)
committerAngus Leeming <leeming@lyx.org>
Fri, 1 Mar 2002 17:12:13 +0000 (17:12 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3630 a592a061-630c-0410-9148-cb99ea01b6c8

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

index c6a8935be5fdade134f03a8b1785d347e93df2b9..72e7b400e747cf71051f9f70a72bd063e2b202cd 100644 (file)
@@ -1,7 +1,9 @@
-2002-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
+2002-03-01  Angus Leeming  <a.leeming@ic.ac.uk>
 
        * filetools.C (getExtFromContents): cleanup.
 
+       * forkedcontr.h (d-tor): make it public for Dekel's crappy compiler.
+
 2002-02-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
 
        * Makefile.am (SIGC_INCLUDES): add a -I directive for when
index 96db3f9655a50c00d99e6720b1c635528de401fa..c443a5da1ba3c38131dfc47dd5fbe6e1a2d42eec 100644 (file)
@@ -29,6 +29,11 @@ class Timeout;
 
 class ForkedcallsController : public SigC::Object {
 public:
+       /** This d-tor should really be private, but making it public
+        *   allows egcs 1.1 to compile the class.
+        */
+       ~ForkedcallsController();
+
        /// Get hold of the only controller that can exist inside the process.
         static ForkedcallsController & get();
 
@@ -62,8 +67,6 @@ private:
        ForkedcallsController();
        ///
        ForkedcallsController(ForkedcallsController const &);
-       ///
-       ~ForkedcallsController();
 
        /// The child processes
        typedef std::list<Forkedcall *> ListType;