diff options
author | Michele Calgaro <[email protected]> | 2023-12-03 00:48:02 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-05 12:00:23 +0900 |
commit | 3f84b83e22ef17cc53110d2c31bf6f1b3d850971 (patch) | |
tree | 57a5efdc44eb1850db7a52801b72f6a034a9b89d /tdmlib/kgreet_winbind.cpp | |
parent | e240ec46647a83839cc365b13f730d694aeb2686 (diff) | |
download | tdebase-3f84b83e22ef17cc53110d2c31bf6f1b3d850971.tar.gz tdebase-3f84b83e22ef17cc53110d2c31bf6f1b3d850971.zip |
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 1390bece9a81780610a9aee6f7d543f72bf57d1a)
Diffstat (limited to 'tdmlib/kgreet_winbind.cpp')
-rw-r--r-- | tdmlib/kgreet_winbind.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdmlib/kgreet_winbind.cpp b/tdmlib/kgreet_winbind.cpp index 545a96a61..6065a9123 100644 --- a/tdmlib/kgreet_winbind.cpp +++ b/tdmlib/kgreet_winbind.cpp @@ -93,7 +93,7 @@ KWinbindGreeter::KWinbindGreeter( KGreeterPluginHandler *_handler, if (!themer) { grid = new TQGridLayout( 0, 0, 10 ); - layoutItem = TQT_TQLAYOUTITEM(grid); + layoutItem = grid; } domainLabel = loginLabel = passwdLabel = passwd1Label = passwd2Label = 0; @@ -217,7 +217,7 @@ KWinbindGreeter::~KWinbindGreeter() delete domainCombo; return; } - TQLayoutIterator it = TQT_TQLAYOUT(layoutItem)->iterator(); + TQLayoutIterator it = static_cast<TQLayout*>(layoutItem)->iterator(); for (TQLayoutItem *itm = it.current(); itm; itm = ++it) delete itm->widget(); delete layoutItem; |