mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
doxy and const fix
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3719 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b49f5ac419
commit
79145afdfe
@ -1,3 +1,10 @@
|
||||
2002-03-11 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
||||
|
||||
* forkedcall.h: docy fix
|
||||
change SignalType second type to be const ref.
|
||||
|
||||
* forkedcall.C: doxy fix
|
||||
|
||||
2002-03-11 Kayvan A. Sylvan <kayvan@sylvan.com>
|
||||
|
||||
* lyxsum.C: compilation fix
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file syscall.C
|
||||
* \file forkedcall.C
|
||||
* Copyright 2002 the LyX Team
|
||||
* Read the file COPYING
|
||||
*
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file syscall.h
|
||||
* \file forkedcall.h
|
||||
* Copyright 2002 the LyX Team
|
||||
* Read the file COPYING
|
||||
*
|
||||
@ -71,7 +71,7 @@ public:
|
||||
* we can return easily to C++ methods, rather than just globally
|
||||
* accessible functions.
|
||||
*/
|
||||
typedef SigC::Signal3<void, string, pid_t, int> SignalType;
|
||||
typedef SigC::Signal3<void, string const &, pid_t, int> SignalType;
|
||||
|
||||
/** The signal is connected in the calling routine to the desired
|
||||
* slot. We pass a shared_ptr rather than a reference to the signal
|
||||
|
Loading…
Reference in New Issue
Block a user