mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Small fixes to compile with compaq cxx
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@812 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
6661712fbc
commit
a0911c75d0
12
ChangeLog
12
ChangeLog
@ -1,3 +1,15 @@
|
||||
2000-06-13 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* src/Timeout.C (TimeOut): remove default argument.
|
||||
|
||||
* src/LyXView.C (LyXView_AutosaveTimerCB): this should not have
|
||||
"C" linkage.
|
||||
|
||||
* src/insets/ExternalTemplate.C: add a "using" directive.
|
||||
|
||||
* src/lyx_main.h: remove the act_ struct, which seems unused
|
||||
anyway.
|
||||
|
||||
2000-06-12 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* LyX Developers Meeting: All files changed, due to random C++ (by
|
||||
|
@ -158,13 +158,11 @@ void LyXView::AutoSave()
|
||||
|
||||
|
||||
// Wrapper for the above
|
||||
extern "C" {
|
||||
static
|
||||
void C_LyXView_AutosaveTimerCB(void * ob)
|
||||
{
|
||||
static
|
||||
void LyXView_AutosaveTimerCB(void * ob)
|
||||
{
|
||||
LyXView * view = static_cast<LyXView*>(ob);
|
||||
view->AutoSave();
|
||||
}
|
||||
}
|
||||
|
||||
/// Reset autosave timer
|
||||
@ -265,7 +263,7 @@ void LyXView::create_form_form_main(int width, int height)
|
||||
// TIMERS
|
||||
//
|
||||
|
||||
autosave_timeout.callback(C_LyXView_AutosaveTimerCB, this);
|
||||
autosave_timeout.callback(LyXView_AutosaveTimerCB, this);
|
||||
|
||||
//
|
||||
// Misc
|
||||
|
@ -22,7 +22,7 @@ Timeout::Timeout()
|
||||
callback_(0), data_(0) {}
|
||||
|
||||
|
||||
Timeout::Timeout(int msec, Type t = ONETIME)
|
||||
Timeout::Timeout(int msec, Type t)
|
||||
: type(t), timeout(msec), timeout_id(-1),
|
||||
callback_(0), data_(0) {}
|
||||
|
||||
|
@ -24,6 +24,7 @@
|
||||
|
||||
using std::endl;
|
||||
using std::ostream;
|
||||
using std::for_each;
|
||||
|
||||
extern string user_lyxdir;
|
||||
|
||||
|
@ -67,7 +67,7 @@ private:
|
||||
///
|
||||
string batch_command;
|
||||
///
|
||||
struct sigaction act_;
|
||||
// struct sigaction act_; // seems to be unused
|
||||
//@}
|
||||
/**@name Private Members */
|
||||
//@{
|
||||
|
Loading…
Reference in New Issue
Block a user