summaryrefslogtreecommitdiff
path: root/sfx2/source/bastyp/helper.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-29 09:47:05 +0200
committerNoel Grandin <noel@peralex.com>2013-08-29 09:48:16 +0200
commit511354504cfc2c8f002752775d5bb336b01bd6ab (patch)
tree15891b3da3e9a76c317848296ec2b7a3171af508 /sfx2/source/bastyp/helper.cxx
parent65ec892aaa533932f2a2aad2be6d402c4940e686 (diff)
fix windows build after my OUString changes
Change-Id: Icbab6e710bd369ba0daaa679a01988f4a7b51703
Diffstat (limited to 'sfx2/source/bastyp/helper.cxx')
-rw-r--r--sfx2/source/bastyp/helper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/bastyp/helper.cxx b/sfx2/source/bastyp/helper.cxx
index dfc3a235f344..e6637142e637 100644
--- a/sfx2/source/bastyp/helper.cxx
+++ b/sfx2/source/bastyp/helper.cxx
@@ -169,7 +169,7 @@ std::vector< OUString > SfxContentHelper::GetHelpTreeViewContents( const OUStrin
aRow += "\t";
aRow += xContentAccess->queryContentIdentifierString();
aRow += "\t";
- aRow += bFolder ? "1" : "0";
+ aRow += bFolder ? OUString("1") : OUString("0");
aProperties.push_back( aRow );
}
}