summaryrefslogtreecommitdiffstats
path: root/stoc/test/testsmgr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'stoc/test/testsmgr.cxx')
-rw-r--r--stoc/test/testsmgr.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/stoc/test/testsmgr.cxx b/stoc/test/testsmgr.cxx
index afa1291db8e3..60b8467f753a 100644
--- a/stoc/test/testsmgr.cxx
+++ b/stoc/test/testsmgr.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -79,7 +80,7 @@ void setStarUserRegistry()
RegistryKey rootKey, rKey, rKey2;
OUString userReg = getExePath();
- userReg += OUString::createFromAscii("user.rdb");
+ userReg += OUString(RTL_CONSTASCII_USTRINGPARAM("user.rdb"));
if(myRegistry->open(userReg, REG_READWRITE))
{
TEST_ENSHURE(!myRegistry->create(userReg), "setStarUserRegistry error 1");
@@ -103,3 +104,5 @@ SAL_IMPLEMENT_MAIN()
printf( "ServiceManagerTest : OK\n" );
return 0;
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */