diff options
author | Michele Calgaro <[email protected]> | 2025-01-15 17:06:16 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-01-15 17:06:16 +0900 |
commit | 006d5bed62999d394fab3c0a95424024d8f41516 (patch) | |
tree | 2918b08649d7333ef4c1b3e3556deb3f4ce7cc93 /examples/uimodules/uiwidgets.py | |
parent | 7c91bff18e7e0fa858c085b18a6816218a465efa (diff) | |
download | pytde-006d5bed62999d394fab3c0a95424024d8f41516.tar.gz pytde-006d5bed62999d394fab3c0a95424024d8f41516.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'examples/uimodules/uiwidgets.py')
-rw-r--r-- | examples/uimodules/uiwidgets.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/uimodules/uiwidgets.py b/examples/uimodules/uiwidgets.py index 69bd002..aea7383 100644 --- a/examples/uimodules/uiwidgets.py +++ b/examples/uimodules/uiwidgets.py @@ -114,8 +114,8 @@ class Page1: grp.show () self.page.show () - kapp = TDEApplication.kApplication () - kapp.processEvents () + tdeApp = TDEApplication.tdeApplication () + tdeApp.processEvents () y = y + 195 sqzLbl = TQLabel ("This text is too long to fit in the label below", self.page) |