[Kst] extragear/graphics/kst/kst

George Staikos staikos at kde.org
Thu Aug 4 07:22:01 CEST 2005


SVN commit 442866 by staikos:

no need for virtual in these ones, right?  We need to audit and try to reduce
our vtables in general at some point.



 M  +4 -4      kstgfxarrowmousehandler.h  
 M  +4 -4      kstgfxellipsemousehandler.h  
 M  +4 -4      kstgfxlinemousehandler.h  
 M  +4 -4      kstgfxpicturemousehandler.h  
 M  +4 -4      kstgfxrectanglemousehandler.h  
 M  +4 -4      kstgfxtextmousehandler.h  


--- trunk/extragear/graphics/kst/kst/kstgfxarrowmousehandler.h #442865:442866
@@ -26,10 +26,10 @@
     KstGfxArrowMouseHandler(KstTopLevelViewPtr top);
     ~KstGfxArrowMouseHandler();
     
-    virtual void pressMove(const QPoint& pos, bool shift);
-    virtual void releasePress(const QPoint& pos, bool shift);
-    virtual void updateFocus(const QPoint& pos);
-    virtual void cancelMouseOperations();
+    void pressMove(const QPoint& pos, bool shift);
+    void releasePress(const QPoint& pos, bool shift);
+    void updateFocus(const QPoint& pos);
+    void cancelMouseOperations();
     
   protected:
     KstViewArrowPtr _drawingArrow;
--- trunk/extragear/graphics/kst/kst/kstgfxellipsemousehandler.h #442865:442866
@@ -26,10 +26,10 @@
     KstGfxEllipseMouseHandler(KstTopLevelViewPtr top);
     ~KstGfxEllipseMouseHandler();
     
-    virtual void pressMove(const QPoint& pos, bool shift);
-    virtual void releasePress(const QPoint& pos, bool shift);
-    virtual void updateFocus(const QPoint& pos);
-    virtual void cancelMouseOperations();
+    void pressMove(const QPoint& pos, bool shift);
+    void releasePress(const QPoint& pos, bool shift);
+    void updateFocus(const QPoint& pos);
+    void cancelMouseOperations();
     
   protected:
     KstViewEllipsePtr _drawingEllipse;
--- trunk/extragear/graphics/kst/kst/kstgfxlinemousehandler.h #442865:442866
@@ -26,10 +26,10 @@
     KstGfxLineMouseHandler(KstTopLevelViewPtr top);
     ~KstGfxLineMouseHandler();
     
-    virtual void pressMove(const QPoint& pos, bool shift);
-    virtual void releasePress(const QPoint& pos, bool shift);
-    virtual void updateFocus(const QPoint& pos);
-    virtual void cancelMouseOperations();
+    void pressMove(const QPoint& pos, bool shift);
+    void releasePress(const QPoint& pos, bool shift);
+    void updateFocus(const QPoint& pos);
+    void cancelMouseOperations();
     
   protected:
     KstViewArrowPtr _drawingArrow;
--- trunk/extragear/graphics/kst/kst/kstgfxpicturemousehandler.h #442865:442866
@@ -26,10 +26,10 @@
     KstGfxPictureMouseHandler(KstTopLevelViewPtr top);
     ~KstGfxPictureMouseHandler();
     
-    virtual void pressMove(const QPoint& pos, bool shift);
-    virtual void releasePress(const QPoint& pos, bool shift);
-    virtual void updateFocus(const QPoint& pos);
-    virtual void cancelMouseOperations();
+    void pressMove(const QPoint& pos, bool shift);
+    void releasePress(const QPoint& pos, bool shift);
+    void updateFocus(const QPoint& pos);
+    void cancelMouseOperations();
     
   protected:
     KstViewPicturePtr _drawingPicture;
--- trunk/extragear/graphics/kst/kst/kstgfxrectanglemousehandler.h #442865:442866
@@ -26,10 +26,10 @@
     KstGfxRectangleMouseHandler(KstTopLevelViewPtr top);
     ~KstGfxRectangleMouseHandler();
     
-    virtual void pressMove(const QPoint& pos, bool shift);
-    virtual void releasePress(const QPoint& pos, bool shift);
-    virtual void updateFocus(const QPoint& pos);
-    virtual void cancelMouseOperations();
+    void pressMove(const QPoint& pos, bool shift);
+    void releasePress(const QPoint& pos, bool shift);
+    void updateFocus(const QPoint& pos);
+    void cancelMouseOperations();
     
   private:
     KstViewBoxPtr _drawingRectangle;
--- trunk/extragear/graphics/kst/kst/kstgfxtextmousehandler.h #442865:442866
@@ -26,10 +26,10 @@
     KstGfxTextMouseHandler(KstTopLevelViewPtr top);
     ~KstGfxTextMouseHandler();
     
-    virtual void pressMove(const QPoint& pos, bool shift);
-    virtual void releasePress(const QPoint& pos, bool shift);
-    virtual void updateFocus(const QPoint& pos);
-    virtual void cancelMouseOperations();
+    void pressMove(const QPoint& pos, bool shift);
+    void releasePress(const QPoint& pos, bool shift);
+    void updateFocus(const QPoint& pos);
+    void cancelMouseOperations();
     
   protected:
     KstViewLabelPtr _drawingLabel;


More information about the Kst mailing list