From 1d4158dd755a445fd42f2db7db5abab8084175cd Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 4 Feb 2013 14:05:40 -0600 Subject: Rename KIcon to enhance compatibility with KDE4 --- kchart/kchartDataEditor.cc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'kchart/kchartDataEditor.cc') diff --git a/kchart/kchartDataEditor.cc b/kchart/kchartDataEditor.cc index 9c5de4f9..2bd0230d 100644 --- a/kchart/kchartDataEditor.cc +++ b/kchart/kchartDataEditor.cc @@ -204,10 +204,10 @@ kchartDataEditor::kchartDataEditor(TQWidget* parent) : // Buttons for Inserting / Removing rows & columns // The icon images are taken from the standard m_insertRowButton = new TQPushButton( page); - // In 2.0; this is supposed to be just KIcon("name").pixmap(32). + // In 2.0; this is supposed to be just TDEIcon("name").pixmap(32). m_insertRowButton->setPixmap( BarIcon( TQString("insert_table_row"), - KIcon::SizeMedium, - KIcon::DefaultState, + TDEIcon::SizeMedium, + TDEIcon::DefaultState, KChartFactory::global() ) ); //m_insertRowButton = new TQPushButton( i18n("Insert Row") , page); connect( m_insertRowButton, TQT_SIGNAL( clicked() ), @@ -215,8 +215,8 @@ kchartDataEditor::kchartDataEditor(TQWidget* parent) : m_removeRowButton = new TQPushButton( page ); m_removeRowButton->setPixmap( BarIcon( TQString("delete_table_row"), - KIcon::SizeMedium, - KIcon::DefaultState, + TDEIcon::SizeMedium, + TDEIcon::DefaultState, KChartFactory::global() ) ); //m_removeRowButton = new TQPushButton( i18n("Remove Row") , page); connect( m_removeRowButton, TQT_SIGNAL( clicked() ), @@ -224,8 +224,8 @@ kchartDataEditor::kchartDataEditor(TQWidget* parent) : m_insertColButton = new TQPushButton( page ); m_insertColButton->setPixmap( BarIcon( TQString("insert_table_col"), - KIcon::SizeMedium, - KIcon::DefaultState, + TDEIcon::SizeMedium, + TDEIcon::DefaultState, KChartFactory::global() ) ); //m_insertColButton = new TQPushButton( i18n("Insert Column") , page); connect( m_insertColButton, TQT_SIGNAL( clicked() ), @@ -233,8 +233,8 @@ kchartDataEditor::kchartDataEditor(TQWidget* parent) : m_removeColButton = new TQPushButton( page ); m_removeColButton->setPixmap( BarIcon( TQString("delete_table_col"), - KIcon::SizeMedium, - KIcon::DefaultState, + TDEIcon::SizeMedium, + TDEIcon::DefaultState, KChartFactory::global() ) ); //m_removeColButton = new TQPushButton( i18n("Remove Column") , page); connect( m_removeColButton, TQT_SIGNAL( clicked() ), -- cgit v1.2.1