diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2010-01-09 09:37:23 +0000 |
|---|---|---|
| committer | Jon A. Cruz <jon@joncruz.org> | 2010-01-09 09:37:23 +0000 |
| commit | c4170261f04e1d37439f71c92fb3ac442da40c7f (patch) | |
| tree | 104e1d25fdb2fc0a9bdbaae7cf7ea9c48208032a /src/ui/uxmanager.cpp | |
| parent | C++-ification pass. (diff) | |
| download | inkscape-c4170261f04e1d37439f71c92fb3ac442da40c7f.tar.gz inkscape-c4170261f04e1d37439f71c92fb3ac442da40c7f.zip | |
Initial c++-ification of toolbox creation.
(bzr r8955)
Diffstat (limited to 'src/ui/uxmanager.cpp')
| -rw-r--r-- | src/ui/uxmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/uxmanager.cpp b/src/ui/uxmanager.cpp index 5f0021ef6..d152e473e 100644 --- a/src/ui/uxmanager.cpp +++ b/src/ui/uxmanager.cpp @@ -48,7 +48,7 @@ UXManager::~UXManager() void UXManager::connectToDesktop( std::vector<GtkWidget *> const & toolboxes, SPDesktop *desktop ) { for (std::vector<GtkWidget*>::const_iterator it = toolboxes.begin(); it != toolboxes.end(); ++it ) { - sp_toolbox_set_desktop( *it, desktop ); + ToolboxFactory::setToolboxDesktop( *it, desktop ); } } |
