mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
14 lines
301 B
C++
14 lines
301 B
C++
#include "ratingpaintertestwidget.h"
|
|
|
|
#include <QApplication>
|
|
#include <kcomponentdata.h>
|
|
|
|
|
|
int main( int argc, char** argv )
|
|
{
|
|
QApplication app( argc, argv );
|
|
KComponentData data( "NepomukRatingPainterTest" );
|
|
RatingPainterTestWidget ratingW;
|
|
ratingW.show();
|
|
return app.exec();
|
|
}
|