diff options
author | Stephan Bergmann <sb@openoffice.org> | 2002-11-08 15:00:50 +0000 |
---|---|---|
committer | Stephan Bergmann <sb@openoffice.org> | 2002-11-08 15:00:50 +0000 |
commit | 07f99f4002ac0471ec5dff11e18b592ad5321adc (patch) | |
tree | e339c64f47cf52bd371282c90d316c242045d43a /sal/test | |
parent | c23d384b2ed7688b9ca0caac9e4bf5139deacf99 (diff) |
#104548# Fixed code to compile on Linux.
Diffstat (limited to 'sal/test')
-rw-r--r-- | sal/test/testbootstrap.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sal/test/testbootstrap.cxx b/sal/test/testbootstrap.cxx index 1034b3e46..2d8a95b8e 100644 --- a/sal/test/testbootstrap.cxx +++ b/sal/test/testbootstrap.cxx @@ -53,7 +53,8 @@ int main( int argc, char *argv[] ) OUString value; sal_Bool useDefault; - useDefault = bootstrap.getFrom(OUString(RTL_CONSTASCII_USTRINGPARAM("USEDEFAULT")), OUString()); + OUString aDummy; + useDefault = bootstrap.getFrom(OUString(RTL_CONSTASCII_USTRINGPARAM("USEDEFAULT")), aDummy); sal_Bool result = sal_False; sal_Bool found = sal_True; |