Browse Source

- Use QPlastiqueStyle as a default

adaptive-webui-19844
Christophe Dumez 16 years ago
parent
commit
b58046b1fc
  1. 2
      src/main.cpp

2
src/main.cpp

@ -85,6 +85,8 @@ void useStyle(QApplication *app, int style){
app->setStyle(new QWindowsXPStyle()); app->setStyle(new QWindowsXPStyle());
break; break;
#endif #endif
default:
app->setStyle(new QPlastiqueStyle());
} }
} }

Loading…
Cancel
Save