blob: 62f3c1a7616074254a105eb5cf7f50c390a36b48 (
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 )
{
KApplication app( argc, argv, "KSqueezedTextLabelTest" );
KSqueezedTextLabel l( "This is a rather long string", 0);
app.setMainWidget( &l );
l.show();
return app.exec();
}
|