aboutsummaryrefslogtreecommitdiff
path: root/src/WorkspaceNameTheme.hh
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2008-01-05 01:39:19 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2008-01-05 01:39:19 (GMT)
commitac1bd7e0981222bf340ce7defb2bb8307d42a0a2 (patch)
treec8fb9c618184e7ac44f6138409cab3fab86b23e4 /src/WorkspaceNameTheme.hh
parent60ba709c2f47cc2c7b877aef1b0f297b097853e5 (diff)
downloadfluxbox-ac1bd7e0981222bf340ce7defb2bb8307d42a0a2.zip
fluxbox-ac1bd7e0981222bf340ce7defb2bb8307d42a0a2.tar.bz2
update code to use ThemeProxy
Diffstat (limited to 'src/WorkspaceNameTheme.hh')
-rw-r--r--src/WorkspaceNameTheme.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WorkspaceNameTheme.hh b/src/WorkspaceNameTheme.hh
index 860f6ec..e4f426f 100644
--- a/src/WorkspaceNameTheme.hh
+++ b/src/WorkspaceNameTheme.hh
@@ -49,8 +49,8 @@ public:
49 virtual FbTk::Subject &reconfigSig() { return FbTk::Theme::reconfigSig(); } 49 virtual FbTk::Subject &reconfigSig() { return FbTk::Theme::reconfigSig(); }
50 virtual const FbTk::Subject &reconfigSig() const { return FbTk::Theme::reconfigSig(); } 50 virtual const FbTk::Subject &reconfigSig() const { return FbTk::Theme::reconfigSig(); }
51 51
52 virtual WorkspaceNameTheme *operator ->() { return this; } 52 virtual WorkspaceNameTheme &operator *() { return *this; }
53 virtual const WorkspaceNameTheme *operator ->() const { return this; } 53 virtual const WorkspaceNameTheme &operator *() const { return *this; }
54 54
55}; 55};
56 56