]> git.lyx.org Git - features.git/commitdiff
Propogate the virtual keyword.
authorAngus Leeming <leeming@lyx.org>
Tue, 19 Nov 2002 19:18:11 +0000 (19:18 +0000)
committerAngus Leeming <leeming@lyx.org>
Tue, 19 Nov 2002 19:18:11 +0000 (19:18 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5670 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/xforms/ChangeLog
src/frontends/xforms/FormBase.h
src/frontends/xforms/FormExternal.h
src/frontends/xforms/FormSpellchecker.h

index bcb96e15d4ee6c568e1541735b83d0ffc109cfd6..3c2d0e2e05f56f94235965d1c3af0044a4fc824e 100644 (file)
@@ -5,6 +5,11 @@
 
        * Makefile.am (libxforms_la_SOURCES): remove FormInset.[Ch].
 
+       * FormBase.h (show):
+       * FormExternal.h (apply, build, update, input):
+       * FormSpellchecker.h (apply, build, update, partialUpdate):
+       propogate virtual keyword.
+
 2002-11-17  John Levon  <levon@movementarian.org>
 
        * FileDialog.C: open/save name change
index 10f883ab14b7eb45c056dd5df0a587575ed0308a..a7bc62951f3ac10903082eeb284652e8479edf08 100644 (file)
@@ -55,7 +55,7 @@ protected:
        /// Hide the dialog.
        virtual void hide();
        /// Create the dialog if necessary, update it and display it.
-       void show();
+       virtual void show();
 
        /** Prepare the way to:
         *  1. display feedback as the mouse moves over ob. This feedback will
index 9a8369571718670f6fcb630de454e28484926f08..97e410a8a0a3e7e9f9ae9c77449513d0ddf7c905 100644 (file)
@@ -31,16 +31,16 @@ public:
        FormExternal();
 private:
        /// apply changes
-       void apply();
+       virtual void apply();
 
        /// build the dialog
-       void build();
+       virtual void build();
 
        /// update the dialog
-       void update();
+       virtual void update();
 
        /// Filter the inputs on callback from xforms
-       ButtonPolicy::SMInput input(FL_OBJECT *, long);
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
 
        ///
        void updateComboChange();
index 476cfa00f4d909b702ac8b4ce7a932ef75166c96..670b33befec66673f09dc3ee566e3bf11125ffa7 100644 (file)
@@ -29,14 +29,14 @@ public:
        FormSpellchecker();
 private:
        /// not needed.
-       void apply() {}
+       virtual void apply() {}
        /// Build the dialog
-       void build();
+       virtual void build();
        ///
-       void update();
+       virtual void update();
 
        /// set suggestions and exit message
-       void partialUpdate(int);
+       virtual void partialUpdate(int);
 
        /// Filter the inputs
        virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);