mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
make constructor public
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3644 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4b348558bb
commit
8f225dc811
@ -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>
|
||||
|
@ -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 &);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user