summaryrefslogtreecommitdiff
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
parent77d083130948fa35f9f404656b8c170060e78043 (diff)
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.
-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)