summaryrefslogtreecommitdiffstats
path: root/examples/pytde-sampler/runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/pytde-sampler/runner.py')
-rwxr-xr-xexamples/pytde-sampler/runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/pytde-sampler/runner.py b/examples/pytde-sampler/runner.py
index e153fae..3f479f6 100755
--- a/examples/pytde-sampler/runner.py
+++ b/examples/pytde-sampler/runner.py
@@ -3,7 +3,7 @@
"""
import sys
-from tdecore import KApplication, KCmdLineArgs
+from tdecore import TDEApplication, KCmdLineArgs
from tdeui import KMainWindow
from qt import TQVBoxLayout
@@ -52,7 +52,7 @@ if __name__ == '__main__':
pathitem = args.arg(0)
widget = importItem(pathitem)
- app = KApplication()
+ app = TDEApplication()
mainWindow = SamplerRunnerWindow(widget)
mainWindow.show()
app.exec_loop()