You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
|
|
#include <tqguardedptr.h>
|
|
|
|
#include <tdeapplication.h>
|
|
#include <tdeaction.h>
|
|
|
|
#include <assert.h>
|
|
|
|
int main( int argc, char **argv )
|
|
{
|
|
TDEApplication app( argc, argv, "tdeactiontest" );
|
|
|
|
TDEActionCollection coll( 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() );
|
|
|
|
assert( action1.isNull() );
|
|
assert( action2.isNull() );
|
|
assert( action3.isNull() );
|
|
assert( action4.isNull() );
|
|
assert( action5.isNull() );
|
|
assert( action6.isNull() );
|
|
assert( action7.isNull() );
|
|
|
|
return 0;
|
|
}
|