aboutsummaryrefslogtreecommitdiff
path: root/lib/gui
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-12-31 00:23:01 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-12-31 00:23:01 +0000
commit85f2616ef78700cf2639992abaf1011ecaa897bd (patch)
tree86b10403cdb942ec5a4a168a7012fe3ac859a703 /lib/gui
parent39862e4439df37f150796d3d99352b8859de0736 (diff)
downloadenigma2-85f2616ef78700cf2639992abaf1011ecaa897bd.tar.gz
enigma2-85f2616ef78700cf2639992abaf1011ecaa897bd.zip
make many constructors and destructors invisible for python
Diffstat (limited to 'lib/gui')
-rw-r--r--lib/gui/ewindowstyle.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/gui/ewindowstyle.h b/lib/gui/ewindowstyle.h
index 08ea0a41..04d9d44a 100644
--- a/lib/gui/ewindowstyle.h
+++ b/lib/gui/ewindowstyle.h
@@ -41,9 +41,15 @@ public:
class eWindowStyleManager: public iObject
{
DECLARE_REF(eWindowStyleManager);
+#ifdef SWIG
+ eWindowStyleManager();
+ ~eWindowStyleManager();
+#endif
public:
+#ifndef SWIG
eWindowStyleManager();
~eWindowStyleManager();
+#endif
void getStyle(ePtr<eWindowStyle> &style);
void setStyle(eWindowStyle *style);
static int getInstance(ePtr<eWindowStyleManager> &mgr) { mgr = m_instance; if (!mgr) return -1; return 0; }