Просмотр исходного кода

ctkConsole - Add "virtual" keyword if function are virtual in base class

Jean-Christophe Fillion-Robin лет назад: 14
Родитель
Сommit
b3921f207b
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      Libs/Widgets/ctkConsole_p.h

+ 2 - 2
Libs/Widgets/ctkConsole_p.h

@@ -41,14 +41,14 @@ public:
 
   void init();
 
-  void keyPressEvent(QKeyEvent* e);
+  virtual void keyPressEvent(QKeyEvent* e);
 
   void switchToUserInputTextColor();
   
   /// Returns the end of the document
   int documentEnd() const;
 
-  void focusOutEvent(QFocusEvent *e);
+  virtual void focusOutEvent(QFocusEvent *e);
 
   void updateCompleterIfVisible();