[Libreoffice-commits] core.git: sfx2/source
Noel Grandin
noel at peralex.com
Thu Aug 29 00:48:46 PDT 2013
sfx2/source/bastyp/helper.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 511354504cfc2c8f002752775d5bb336b01bd6ab
Author: Noel Grandin <noel at peralex.com>
Date: Thu Aug 29 09:47:05 2013 +0200
fix windows build after my OUString changes
Change-Id: Icbab6e710bd369ba0daaa679a01988f4a7b51703
diff --git a/sfx2/source/bastyp/helper.cxx b/sfx2/source/bastyp/helper.cxx
index dfc3a23..e663714 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 );
}
}
More information about the Libreoffice-commits
mailing list