blob: a0a0e400f7153246a51ff6f9697347aa6257850c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "ksqueezedtextlabel.h"
#include <kapplication.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();
}
|