From: Angus Leeming Date: Thu, 28 Feb 2002 15:37:52 +0000 (+0000) Subject: Since Jean-Marc is making you all rebuild your trees, now is the time to X-Git-Tag: 1.6.10~19784 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=a1aa5796c8112a2673b8216b89a0254a2f3d0a66;p=features.git Since Jean-Marc is making you all rebuild your trees, now is the time to add a new static method "initialiseGraphics" to Dialogs.h. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3612 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/ChangeLog b/src/frontends/ChangeLog index 169380f132..57517b4bb5 100644 --- a/src/frontends/ChangeLog +++ b/src/frontends/ChangeLog @@ -1,3 +1,7 @@ +2002-02-28 Angus Leeming + + * Dialogs.h (initialiseGraphics): a new static method. + 2002-02-27 Angus Leeming * Makefile.am: don't compile support as LyXImage is now dead. diff --git a/src/frontends/Dialogs.h b/src/frontends/Dialogs.h index 50c3ccc02e..b80704b97c 100644 --- a/src/frontends/Dialogs.h +++ b/src/frontends/Dialogs.h @@ -63,6 +63,11 @@ public: Dialogs(LyXView *); //@} + /** Called bu the graphics cache to connect the approriate frontend + * image loading routines to the LyX kernel. + */ + static void initialiseGraphics(); + /** Redraw all visible dialogs because, for example, the GUI colours have been re-mapped. */ static SigC::Signal0 redrawGUI; diff --git a/src/frontends/xforms/ChangeLog b/src/frontends/xforms/ChangeLog index 838f9fc27d..1a7e761c38 100644 --- a/src/frontends/xforms/ChangeLog +++ b/src/frontends/xforms/ChangeLog @@ -1,3 +1,7 @@ +2002-02-28 Angus Leeming + + * Dialogs.C (initialiseGraphics): a new static method. + 2002-02-28 John Levon * FormBase.C: diff --git a/src/frontends/xforms/Dialogs.C b/src/frontends/xforms/Dialogs.C index 7333af5b83..421e3cd999 100644 --- a/src/frontends/xforms/Dialogs.C +++ b/src/frontends/xforms/Dialogs.C @@ -128,6 +128,12 @@ Dialogs::Dialogs(LyXView * lv) hideAll.connect(hideBufferDependent.slot()); } +// Called bu the graphics cache to connect the approriate frontend +// image loading routines to the LyX kernel. +void Dialogs::initialiseGraphics() +{ +} + /***************************************************************************** Q. WHY does Dialogs::Dialogs pass `this' to dialog constructors?