Skip to content

Commit

Permalink
COMP: Fix Qt4/C++98 build updating ctkPythonConsole to use CTK_OVERRIDE
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfr committed Jun 26, 2023
1 parent 6ae2fb7 commit 88a3a47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Libs/Scripting/Python/Widgets/ctkPythonConsole.h
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ class CTK_SCRIPTING_PYTHON_WIDGETS_EXPORT ctkPythonConsoleCompleter : public ctk
ctkPythonConsoleCompleter(ctkAbstractPythonManager& pythonManager);
virtual ~ctkPythonConsoleCompleter();

int cursorOffset(const QString& completion) override;
void updateCompletionModel(const QString& completion) override;
int cursorOffset(const QString& completion) CTK_OVERRIDE;
void updateCompletionModel(const QString& completion) CTK_OVERRIDE;

protected:
QScopedPointer<ctkPythonConsoleCompleterPrivate> d_ptr;
Expand Down

0 comments on commit 88a3a47

Please sign in to comment.