diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 14:59:28 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 14:59:28 -0600 |
commit | 257013fc4a8df61a2a4811127f9f183bb0c7019a (patch) | |
tree | 45f81df8f490f4648f81aac743c2148e3b8297d2 /k9author | |
parent | 8e93828d75bea2a1f551f23d12c877a5cbfa4de3 (diff) | |
download | k9copy-257013fc4a8df61a2a4811127f9f183bb0c7019a.tar.gz k9copy-257013fc4a8df61a2a4811127f9f183bb0c7019a.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'k9author')
-rw-r--r-- | k9author/k9menuedit.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/k9author/k9menuedit.cpp b/k9author/k9menuedit.cpp index ee94b3d..c37ad41 100644 --- a/k9author/k9menuedit.cpp +++ b/k9author/k9menuedit.cpp @@ -91,8 +91,8 @@ void k9MenuEdit::bFontClick() { if (m_menuEditor->getSelected()) { k9MenuButton *b=m_menuEditor->getSelected(); TQFont myFont(b->getFont()); - int result = KFontDialog::getFont( myFont ); - if ( result == KFontDialog::Accepted && m_menuEditor->getSelected() ) { + int result = TDEFontDialog::getFont( myFont ); + if ( result == TDEFontDialog::Accepted && m_menuEditor->getSelected() ) { TQPtrList <k9MenuButton> *l=m_menuEditor->getSelection(); for (b=l->first();b;b=l->next()) { b->setFont(myFont); @@ -101,8 +101,8 @@ void k9MenuEdit::bFontClick() { } else { if (m_text) { TQFont myFont(m_text->font()); - int result = KFontDialog::getFont( myFont ); - if ( result == KFontDialog::Accepted ) + int result = TDEFontDialog::getFont( myFont ); + if ( result == TDEFontDialog::Accepted ) setFont(myFont); } |