summaryrefslogtreecommitdiffstats
path: root/knights/list_pgn.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:01:29 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:01:29 -0600
commit61168390755a42de3c8c606d9d1d5804e5b3eeec (patch)
tree86adab1b1585bf46c80755c20420ec5e94f15a34 /knights/list_pgn.cpp
parenta16fb8c6367ad8779ef0308d5009bc5d16f5c931 (diff)
downloadknights-61168390755a42de3c8c606d9d1d5804e5b3eeec.tar.gz
knights-61168390755a42de3c8c606d9d1d5804e5b3eeec.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'knights/list_pgn.cpp')
-rw-r--r--knights/list_pgn.cpp6
1 files changed, 3 insertions, 3 deletions
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,