blob: 7c3fd413caa5bd0335b8d5c1df377aee3512d652 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "ksqueezedtextlabel.h"
#include <tdeapplication.h>
int main( int argc, char **argv )
{
TDEApplication app( argc, argv, "KSqueezedTextLabelTest" );
KSqueezedTextLabel l( "This is a rather long string", 0);
app.setMainWidget( &l );
l.show();
return app.exec();
}
|