aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/snippets/customstyle/main.cpp
blob: a1ac4acaa1480cf015fb9836b2cb1ba84230b7ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12

//! [using a custom style]
import sys
from PySide.QtGui import *

QApplication.setStyle(CustomStyle())
app = QApplication(sys.argv)
spinBox = QSpinBox()
spinBox.show()
sys.exit(app.exec_())

//! [using a custom style]