summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndrzej Hunt <andrzej.hunt@collabora.com>2014-07-30 13:30:07 +0200
committerAndrzej Hunt <andrzej.hunt@collabora.com>2014-07-30 13:30:07 +0200
commit56bd29136ceb32250c0acdce798be47c8f7e7b12 (patch)
tree6abfb0de757785e7cecca235f97458ede3db30db /include
parentLokDocView: Update part selector when mode changes. (diff)
downloadcore-56bd29136ceb32250c0acdce798be47c8f7e7b12.tar.gz
core-56bd29136ceb32250c0acdce798be47c8f7e7b12.zip
Wrap "" in OUString: error: conversion from const char* to non-scalar...
Full error: error: conversion from const char* to non-scalar type rtl::OUString requested This seems to be happening only where ITiledRenderable.hxx ends up being included in an Objective C file.
Diffstat (limited to 'include')
-rw-r--r--include/vcl/ITiledRenderable.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/ITiledRenderable.hxx b/include/vcl/ITiledRenderable.hxx
index a57053ecac7f..f07ccd598fc8 100644
--- a/include/vcl/ITiledRenderable.hxx
+++ b/include/vcl/ITiledRenderable.hxx
@@ -76,7 +76,7 @@ public:
virtual OUString getPartName(int nPart)
{
(void) nPart;
- return "";
+ return OUString("");
}
virtual void setPartMode(LibreOfficeKitPartMode ePartMode)