Skip to content

Instantly share code, notes, and snippets.

@vovythevov
Last active December 23, 2015 05:48
Show Gist options
  • Save vovythevov/6589092 to your computer and use it in GitHub Desktop.
Save vovythevov/6589092 to your computer and use it in GitHub Desktop.
StyleExample: Final main
//----------------------------------------------------------------------------
int main(int argc, char *argv[])
{
QApplication::setStyle( new QCDEStyle );
QApplication app(argc, argv);
QCoreApplication::addLibraryPath("W:/TechTip/QtStyles/SecondPlugin_build/Debug");
QApplication::setStyle(QStyleFactory::create("secondsimplestyle"));
QSpinBox spinBox;
spinBox.show();
return app.exec();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment