summaryrefslogtreecommitdiffstats
path: root/lib/compatibility/tdemdi/qextmdi/tdemditoolviewaccessor_p.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-03-23 11:59:03 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-03-23 11:59:03 +0900
commitc2f28aadde2e2e12594c4d0b8d334254dc76a712 (patch)
treebbf33f8184e5906621b424f3b91ab0ca7b4b2772 /lib/compatibility/tdemdi/qextmdi/tdemditoolviewaccessor_p.h
parente5595fbfda5ebe3973b90d7d56f5ee46561f948f (diff)
downloadtdewebdev-master.tar.gz
tdewebdev-master.zip
Remove use of TDE_VERSIONHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib/compatibility/tdemdi/qextmdi/tdemditoolviewaccessor_p.h')
-rw-r--r--lib/compatibility/tdemdi/qextmdi/tdemditoolviewaccessor_p.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/lib/compatibility/tdemdi/qextmdi/tdemditoolviewaccessor_p.h b/lib/compatibility/tdemdi/qextmdi/tdemditoolviewaccessor_p.h
deleted file mode 100644
index ec19b862..00000000
--- a/lib/compatibility/tdemdi/qextmdi/tdemditoolviewaccessor_p.h
+++ /dev/null
@@ -1,51 +0,0 @@
-//----------------------------------------------------------------------------
-// filename : tdemditoolviewaccessor_p.h
-//----------------------------------------------------------------------------
-// Project : KDE MDI extension
-//
-// begin : 08/2003 by Joseph Wenninger (jowenn@kde.org)
-// changes : ---
-// patches : ---
-//
-// copyright : (C) 2003 by Joseph Wenninger (jowenn@kde.org)
-//----------------------------------------------------------------------------
-//
-//----------------------------------------------------------------------------
-//
-// This program is free software; you can redistribute it and/or modify
-// it under the terms of the GNU Library General Public License as
-// published by the Free Software Foundation; either version 2 of the
-// License, or (at your option) any later version.
-//
-//----------------------------------------------------------------------------
-
-
-#ifndef KMDI_TOOLVIEW_ACCESSOR_PRIVATE_H_
-#define KMDI_TOOLVIEW_ACCESSOR_PRIVATE_H_
-
-
-#include <tqwidget.h>
-#include <kdockwidget.h>
-#include <tqguardedptr.h>
-#include <tdeaction.h>
-
-class KMDI_EXPORT KMdiToolViewAccessorPrivate {
-public:
- KMdiToolViewAccessorPrivate() {
- widgetContainer=0;
- widget=0;
- }
- ~KMdiToolViewAccessorPrivate() {
- delete action;
- if (!widgetContainer.isNull()) widgetContainer->undock();
- delete (KDockWidget*)widgetContainer;
- }
- TQGuardedPtr<KDockWidget> widgetContainer;
- TQWidget* widget;
- TQGuardedPtr<TDEAction> action;
-};
-
-
-#endif
-
-