Make the d-tor public to make Dekel's compiler happy.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3630 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-03-01 17:12:13 +00:00
parent 57bb1b916c
commit 5f1a3be830
2 changed files with 8 additions and 3 deletions

View 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

View 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;