]> git.lyx.org Git - features.git/commitdiff
Since Jean-Marc is making you all rebuild your trees, now is the time to
authorAngus Leeming <leeming@lyx.org>
Thu, 28 Feb 2002 15:37:52 +0000 (15:37 +0000)
committerAngus Leeming <leeming@lyx.org>
Thu, 28 Feb 2002 15:37:52 +0000 (15:37 +0000)
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

src/frontends/ChangeLog
src/frontends/Dialogs.h
src/frontends/xforms/ChangeLog
src/frontends/xforms/Dialogs.C

index 169380f1327a1afc911a14389317cb3dab78d919..57517b4bb57877b9145192e620b17e5b04a9d813 100644 (file)
@@ -1,3 +1,7 @@
+2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
+
+       * Dialogs.h (initialiseGraphics): a new static method.
+
 2002-02-27  Angus Leeming  <a.leeming@ic.ac.uk>
 
        * Makefile.am: don't compile support as LyXImage is now dead.
index 50c3ccc02e93e2e7011cd24000a650ca168a77c3..b80704b97c460f3c11f8976baf0ba24536390d1e 100644 (file)
@@ -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<void> redrawGUI;
index 838f9fc27d4a73455ea04bdd570f589f7e64b9d8..1a7e761c38358e4015f6ef0fe99cc83907d8862a 100644 (file)
@@ -1,3 +1,7 @@
+2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
+
+       * Dialogs.C (initialiseGraphics): a new static method.
+
 2002-02-28  John Levon  <moz@compsoc.man.ac.uk>
 
        * FormBase.C:
index 7333af5b830921b4e0b64d8f0e81b44d8c993ef0..421e3cd9992851324821ee16c4348ac7b1fd2162 100644 (file)
@@ -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?