diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:13:01 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:13:01 -0600 |
commit | deac2ca49faed824fe83066080714eb6d653615b (patch) | |
tree | 8b5bf97c5acaaf5285985b87fa76dbea0f35e4fa /tdeui/tests/kactiontest.cpp | |
parent | 0c9d97065a3d6ceb12d687555a1a33d90db96238 (diff) | |
download | tdelibs-deac2ca49faed824fe83066080714eb6d653615b.tar.gz tdelibs-deac2ca49faed824fe83066080714eb6d653615b.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'tdeui/tests/kactiontest.cpp')
-rw-r--r-- | tdeui/tests/kactiontest.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tdeui/tests/kactiontest.cpp b/tdeui/tests/kactiontest.cpp index 238f912c5..73a108ab0 100644 --- a/tdeui/tests/kactiontest.cpp +++ b/tdeui/tests/kactiontest.cpp @@ -10,15 +10,15 @@ int main( int argc, char **argv ) { TDEApplication app( argc, argv, "kactiontest" ); - KActionCollection coll( static_cast<TQObject *>( 0 ) ); - - TQGuardedPtr<KAction> action1 = new KRadioAction("test",0, &coll); - TQGuardedPtr<KAction> action2 = new KRadioAction("test",0, &coll); - TQGuardedPtr<KAction> action3 = new KRadioAction("test",0, &coll); - TQGuardedPtr<KAction> action4 = new KRadioAction("test",0, &coll); - TQGuardedPtr<KAction> action5 = new KRadioAction("test",0, &coll); - TQGuardedPtr<KAction> action6 = new KRadioAction("test",0, &coll); - TQGuardedPtr<KAction> action7 = new KRadioAction("test",0, &coll); + TDEActionCollection coll( static_cast<TQObject *>( 0 ) ); + + TQGuardedPtr<TDEAction> action1 = new TDERadioAction("test",0, &coll); + TQGuardedPtr<TDEAction> action2 = new TDERadioAction("test",0, &coll); + TQGuardedPtr<TDEAction> action3 = new TDERadioAction("test",0, &coll); + TQGuardedPtr<TDEAction> action4 = new TDERadioAction("test",0, &coll); + TQGuardedPtr<TDEAction> action5 = new TDERadioAction("test",0, &coll); + TQGuardedPtr<TDEAction> action6 = new TDERadioAction("test",0, &coll); + TQGuardedPtr<TDEAction> action7 = new TDERadioAction("test",0, &coll); coll.clear(); assert( coll.isEmpty() ); |