diff options
Diffstat (limited to 'src/focusedwidgets.cpp')
-rw-r--r-- | src/focusedwidgets.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/focusedwidgets.cpp b/src/focusedwidgets.cpp index d472555..f4e14d9 100644 --- a/src/focusedwidgets.cpp +++ b/src/focusedwidgets.cpp @@ -228,7 +228,7 @@ void FocusedColorCombo::keyPressEvent(TQKeyEvent *event) /** class FocusedFontCombo: */ FocusedFontCombo::FocusedFontCombo(TQWidget *parent, const char *name) - : KFontCombo(parent, name) + : TDEFontCombo(parent, name) { } @@ -243,7 +243,7 @@ void FocusedFontCombo::keyPressEvent(TQKeyEvent *event) else if (event->key() == TQt::Key_Return) emit returnPressed2(); else - KFontCombo::keyPressEvent(event); + TDEFontCombo::keyPressEvent(event); } /** class FocusedComboBox: */ |