mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
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:
parent
57bb1b916c
commit
5f1a3be830
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user