소스 검색

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

Jean-Christophe Fillion-Robin 14 년 전
부모
커밋
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();