aboutsummaryrefslogtreecommitdiff
path: root/lib/gdi
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-02-27 02:20:31 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-02-27 02:20:31 +0000
commitdba614edd2aad3c17e244914eaef3809d8300cb1 (patch)
tree382782ddff50bf88e421d933b13e35b9e5682cff /lib/gdi
parent1cdf6cb021fcaa6548b90ba7b6765cf1e8b8b37b (diff)
downloadenigma2-dba614edd2aad3c17e244914eaef3809d8300cb1.tar.gz
enigma2-dba614edd2aad3c17e244914eaef3809d8300cb1.zip
- hopefully fixed some python/refcount stuff (__deref__ is still evil!)
- first work on skin support, not really far - improved infobar - deletes components when destroying screens - fixed elistbox and component - add ability to change bouqet - real query parser still unfinished
Diffstat (limited to 'lib/gdi')
-rw-r--r--lib/gdi/font.h4
-rw-r--r--lib/gdi/gpixmap.h4
-rw-r--r--lib/gdi/grc.h4
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/gdi/font.h b/lib/gdi/font.h
index a17fee71..ff2a88c5 100644
--- a/lib/gdi/font.h
+++ b/lib/gdi/font.h
@@ -79,7 +79,7 @@ class eLCD;
class eTextPara: public iObject
{
-DECLARE_REF;
+DECLARE_REF(eTextPara);
private:
ePtr<Font> current_font, replacement_font;
FT_Face current_face, replacement_face;
@@ -139,7 +139,7 @@ public:
class Font: public iObject
{
-DECLARE_REF;
+DECLARE_REF(Font);
public:
FTC_Image_Desc font;
fontRenderClass *renderer;
diff --git a/lib/gdi/gpixmap.h b/lib/gdi/gpixmap.h
index 9dd170ac..396d92b7 100644
--- a/lib/gdi/gpixmap.h
+++ b/lib/gdi/gpixmap.h
@@ -89,7 +89,7 @@ struct gLookup
*/
class gFont: public iObject
{
-DECLARE_REF;
+DECLARE_REF(gFont);
public:
std::string family;
@@ -133,7 +133,7 @@ struct gSurfaceSystem: gSurface
struct gPixmap: public iObject
{
-DECLARE_REF;
+DECLARE_REF(gPixmap);
private:
friend class gDC;
void fill(const gRegion &clip, const gColor &color);
diff --git a/lib/gdi/grc.h b/lib/gdi/grc.h
index 5eb81314..f6829902 100644
--- a/lib/gdi/grc.h
+++ b/lib/gdi/grc.h
@@ -124,7 +124,7 @@ struct gOpcode
/* gRC is the singleton which controls the fifo and dispatches commands */
class gRC: public iObject
{
-DECLARE_REF;
+DECLARE_REF(gRC);
private:
static gRC *instance;
@@ -212,7 +212,7 @@ public:
class gDC: public iObject
{
-DECLARE_REF;
+DECLARE_REF(gDC);
protected:
ePtr<gPixmap> m_pixmap;