summaryrefslogtreecommitdiffstats
path: root/examples/pykde-sampler/runner.py
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-03 22:23:44 -0600
committerTimothy Pearson <[email protected]>2011-12-03 22:23:44 -0600
commit203ba231d0276943aae36111f9ec1e949f3c6a4c (patch)
treef039f7a5b5fc2da88a96876971bac580d87f6788 /examples/pykde-sampler/runner.py
parentfd35f4a8382b7d223bc0325b9ca3f88515778aa0 (diff)
downloadpytde-203ba231d0276943aae36111f9ec1e949f3c6a4c.tar.gz
pytde-203ba231d0276943aae36111f9ec1e949f3c6a4c.zip
Initial TQt conversion
Diffstat (limited to 'examples/pykde-sampler/runner.py')
-rwxr-xr-xexamples/pykde-sampler/runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/pykde-sampler/runner.py b/examples/pykde-sampler/runner.py
index 43f89fd..e153fae 100755
--- a/examples/pykde-sampler/runner.py
+++ b/examples/pykde-sampler/runner.py
@@ -5,7 +5,7 @@
import sys
from tdecore import KApplication, KCmdLineArgs
from tdeui import KMainWindow
-from qt import QVBoxLayout
+from qt import TQVBoxLayout
## relative import -- cry me a river!
import about
@@ -14,7 +14,7 @@ import about
class SamplerRunnerWindow(KMainWindow):
def __init__(self, ctor):
KMainWindow.__init__(self)
- layout = QVBoxLayout(self)
+ layout = TQVBoxLayout(self)
layout.setAutoAdd(True)
self.widget = ctor(self)