diff options
author | Mark Tiefenbruck <mark@fluxbox.org> | 2008-01-05 01:39:19 (GMT) |
---|---|---|
committer | Mark Tiefenbruck <mark@fluxbox.org> | 2008-01-05 01:39:19 (GMT) |
commit | ac1bd7e0981222bf340ce7defb2bb8307d42a0a2 (patch) | |
tree | c8fb9c618184e7ac44f6138409cab3fab86b23e4 /src/ToolFactory.cc | |
parent | 60ba709c2f47cc2c7b877aef1b0f297b097853e5 (diff) | |
download | fluxbox_lack-ac1bd7e0981222bf340ce7defb2bb8307d42a0a2.zip fluxbox_lack-ac1bd7e0981222bf340ce7defb2bb8307d42a0a2.tar.bz2 |
update code to use ThemeProxy
Diffstat (limited to 'src/ToolFactory.cc')
-rw-r--r-- | src/ToolFactory.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ToolFactory.cc b/src/ToolFactory.cc index 38c9ce2..cee0d93 100644 --- a/src/ToolFactory.cc +++ b/src/ToolFactory.cc | |||
@@ -84,8 +84,8 @@ ToolbarItem *ToolFactory::create(const std::string &name, const FbTk::FbWindow & | |||
84 | ToolbarItem * item = 0; | 84 | ToolbarItem * item = 0; |
85 | 85 | ||
86 | unsigned int button_size = 24; | 86 | unsigned int button_size = 24; |
87 | if (tbar.theme().buttonSize() > 0) | 87 | if (tbar.theme()->buttonSize() > 0) |
88 | button_size = tbar.theme().buttonSize(); | 88 | button_size = tbar.theme()->buttonSize(); |
89 | 89 | ||
90 | if (name == "workspacename") { | 90 | if (name == "workspacename") { |
91 | WorkspaceNameTool *witem = new WorkspaceNameTool(parent, | 91 | WorkspaceNameTool *witem = new WorkspaceNameTool(parent, |