Kaydet (Commit) a400b310 authored tarafından Chr. Rossmanith's avatar Chr. Rossmanith Kaydeden (comit) David Tardon

Remove #define A2S() in PanelFactory.cxx

Change-Id: I650e5826d26b3a86dcddd517ae1f917d1edaedd1
Reviewed-on: https://gerrit.libreoffice.org/4108Reviewed-by: 's avatarDavid Tardon <dtardon@redhat.com>
Tested-by: 's avatarDavid Tardon <dtardon@redhat.com>
üst 5b26722a
......@@ -44,8 +44,6 @@ using namespace cssu;
using namespace ::sd::framework;
using ::rtl::OUString;
#define A2S(pString) (OUString(pString))
namespace sd {
extern ::Window * createTableDesignPanel (::Window* pParent, ViewShellBase& rBase);
}
......@@ -153,11 +151,11 @@ Reference<ui::XUIElement> SAL_CALL PanelFactory::createUIElement (
::Window* pParentWindow = VCLUnoHelper::GetWindow(xParentWindow);
if ( ! xParentWindow.is() || pParentWindow==NULL)
throw RuntimeException(
A2S("PanelFactory::createUIElement called without ParentWindow"),
OUString("PanelFactory::createUIElement called without ParentWindow"),
NULL);
if ( ! xFrame.is())
throw RuntimeException(
A2S("PanelFactory::createUIElement called without XFrame"),
OUString("PanelFactory::createUIElement called without XFrame"),
NULL);
// Tunnel through the controller to obtain a ViewShellBase.
......@@ -171,7 +169,7 @@ Reference<ui::XUIElement> SAL_CALL PanelFactory::createUIElement (
pBase = pController->GetViewShellBase();
}
if (pBase == NULL)
throw RuntimeException(A2S("can not get ViewShellBase for frame"), NULL);
throw RuntimeException(OUString("can not get ViewShellBase for frame"), NULL);
// Get bindings from given arguments.
const sal_uInt64 nBindingsValue (aArguments.getOrDefault("SfxBindings", sal_uInt64(0)));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment