diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-06-27 16:28:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-06-27 16:45:11 +0100 |
commit | 7a61efe4220e5f25a9f5809d5b928960bc30f115 (patch) | |
tree | 81f022ff2165369ca54f3550ec8a728f76be44ba /sfx2/source | |
parent | 61027ca6eb450fb20bfe9209ba180fe0606baeab (diff) |
add missing VclBuilder::stringmap argument to some builder functions
Change-Id: I57e13920b4707ebe5b6a7149dbdbfc45593c0d9d
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/sidebar/SidebarToolBox.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sfx2/source/sidebar/SidebarToolBox.cxx b/sfx2/source/sidebar/SidebarToolBox.cxx index 345d3602ed10..8b0e89945b35 100644 --- a/sfx2/source/sidebar/SidebarToolBox.cxx +++ b/sfx2/source/sidebar/SidebarToolBox.cxx @@ -23,6 +23,7 @@ #include "sfx2/sidebar/Theme.hxx" #include "sfx2/sidebar/Tools.hxx" +#include <vcl/builder.hxx> #include <vcl/gradient.hxx> #include <toolkit/helper/vclunohelper.hxx> #include <svtools/miscopt.hxx> @@ -95,7 +96,7 @@ SidebarToolBox::SidebarToolBox (Window* pParentWindow) #endif } -extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSidebarToolBox(Window *pParent) +extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSidebarToolBox(Window *pParent, VclBuilder::stringmap &) { return new SidebarToolBox(pParent); } |