summaryrefslogtreecommitdiffstats
path: root/kmrml/kmrml/browser.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-04-28 22:39:50 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-04-28 22:39:50 +0900
commitfdd2249496404cafd72fa862c49d6920fd8d7927 (patch)
tree47e86c702ba7d2ee73d827604fe79151290d00b2 /kmrml/kmrml/browser.h
parenta9f6e5c5b26c07d5e96cd5e84e1dd95c973cd3ab (diff)
downloadtdegraphics-fdd2249496404cafd72fa862c49d6920fd8d7927.tar.gz
tdegraphics-fdd2249496404cafd72fa862c49d6920fd8d7927.zip
Drop deprecated kmrml code
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmrml/kmrml/browser.h')
-rw-r--r--kmrml/kmrml/browser.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/kmrml/kmrml/browser.h b/kmrml/kmrml/browser.h
deleted file mode 100644
index d19d1543..00000000
--- a/kmrml/kmrml/browser.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/* This file is part of the KDE project
- Copyright (C) 2002 Carsten Pfeiffer <pfeiffer@kde.org>
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public
- License as published by the Free Software Foundation, version 2.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; see the file COPYING. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#ifndef BROWSER_H
-#define BROWSER_H
-
-#include <tdeparts/browserextension.h>
-
-namespace KMrml
-{
- class MrmlPart;
-
- class Browser : public KParts::BrowserExtension
- {
- Q_OBJECT
-
-
- public:
- Browser( MrmlPart *parent, const char *name );
- ~Browser();
-
- virtual void saveState( TQDataStream& stream );
- virtual void restoreState( TQDataStream& stream );
-
- virtual int xOffset();
- virtual int yOffset();
-
- private:
- MrmlPart *m_part;
- };
-
-}
-
-#endif // BROWSER_H