From 61168390755a42de3c8c606d9d1d5804e5b3eeec Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 1 Feb 2013 15:01:29 -0600 Subject: Rename a number of classes to enhance compatibility with KDE4 --- knights/list_pgn.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'knights/list_pgn.cpp') diff --git a/knights/list_pgn.cpp b/knights/list_pgn.cpp index 4534089..6e255ea 100644 --- a/knights/list_pgn.cpp +++ b/knights/list_pgn.cpp @@ -25,7 +25,7 @@ list_pgn::list_pgn(TQWidget *parent, const char *name) : TQVBox(parent,name) { - listView = new KListView( this, "listView" ); + listView = new TDEListView( this, "listView" ); listView->addColumn( i18n( "Result" ) ); listView->addColumn( i18n( "White" ) ); listView->addColumn( i18n( "Black" ) ); @@ -45,7 +45,7 @@ list_pgn::list_pgn(TQWidget *parent, const char *name) : TQVBox(parent,name) a 12 second load time and a 40 second load time. dummyView is just a placeholder for listView while scanning. */ - dummyView = new KListView( this, "dummyView" ); + dummyView = new TDEListView( this, "dummyView" ); dummyView->addColumn( i18n( "Result" ) ); dummyView->addColumn( i18n( "White" ) ); dummyView->addColumn( i18n( "Black" ) ); @@ -132,7 +132,7 @@ void list_pgn::timerEvent( TQTimerEvent* ) } else { - (void) new KListViewItem( listView, + (void) new TDEListViewItem( listView, tmpPGN.TAG_Result, tmpPGN.TAG_White, tmpPGN.TAG_Black, -- cgit v1.2.1