diff options
author | Timothy Pearson <[email protected]> | 2013-01-24 13:24:53 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-24 13:24:53 -0600 |
commit | d9b70de56a7c1ce685cc8fd119d9b004e1fbfdee (patch) | |
tree | 64b2d68617a65f38415feee55540640ec579eda9 /kradio3/src/aboutwidget.cpp | |
parent | f2f2c5781e60ffdf342231c2844a6d47f332b4ca (diff) | |
download | tderadio-d9b70de56a7c1ce685cc8fd119d9b004e1fbfdee.tar.gz tderadio-d9b70de56a7c1ce685cc8fd119d9b004e1fbfdee.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kradio3/src/aboutwidget.cpp')
-rw-r--r-- | kradio3/src/aboutwidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kradio3/src/aboutwidget.cpp b/kradio3/src/aboutwidget.cpp index c5548da..2b70a20 100644 --- a/kradio3/src/aboutwidget.cpp +++ b/kradio3/src/aboutwidget.cpp @@ -199,7 +199,7 @@ void KRadioAboutWidget::fontChange( const TQFont &/*oldFont*/ ) { if( mTitleLabel != 0 ) { - TQFont f( KGlobalSettings::generalFont() ); + TQFont f( TDEGlobalSettings::generalFont() ); f.setBold( true ); f.setPointSize( 14 ); // Perhaps changeable ? mTitleLabel->setFont(f); @@ -207,7 +207,7 @@ void KRadioAboutWidget::fontChange( const TQFont &/*oldFont*/ ) if( mVersionLabel != 0 ) { - TQFont f( KGlobalSettings::generalFont() ); + TQFont f( TDEGlobalSettings::generalFont() ); f.setBold( true ); mVersionLabel->setFont(f); mAuthorLabel->setFont(f); @@ -262,7 +262,7 @@ TQFrame *KRadioAboutWidget::addLicensePage( const TQString &title, TQVBoxLayout *vbox = new TQVBoxLayout( page, KDialog::spacingHint() ); TQTextEdit *textEdit = new TQTextEdit( page, "license" ); - textEdit->setFont( KGlobalSettings::fixedFont() ); + textEdit->setFont( TDEGlobalSettings::fixedFont() ); textEdit->setReadOnly( true ); textEdit->setWordWrap( TQTextEdit::NoWrap ); textEdit->setText( text ); |