summaryrefslogtreecommitdiff
path: root/unotools/inc
diff options
context:
space:
mode:
authorRicardo Montania <ricardo@linuxafundo.com.br>2012-12-27 11:28:45 -0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-12-28 18:16:04 +0000
commit3179055dc3e267c961a5618c810fbc0df1858d72 (patch)
treee3ee470480d1a1036f570372bcfa1b4fd61d3cae /unotools/inc
parentc4f444dc40a1e8429250996dc2b39200c91ea1ce (diff)
String Cleanup and news OUString methods/constructors
Change-Id: Ia6142020330d0e12650fdc519b66f00e607eac42 Reviewed-on: https://gerrit.libreoffice.org/1491 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'unotools/inc')
-rw-r--r--unotools/inc/unotools/tempfile.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/unotools/inc/unotools/tempfile.hxx b/unotools/inc/unotools/tempfile.hxx
index 448e729a3998..971bad943e11 100644
--- a/unotools/inc/unotools/tempfile.hxx
+++ b/unotools/inc/unotools/tempfile.hxx
@@ -69,6 +69,9 @@ public:
TempFile( const String& rLeadingChars, const String* pExtension=NULL, const String* pParent=NULL,
sal_Bool bDirectory=sal_False);
+ TempFile( const OUString& rLeadingChars, const OUString* pExtension=NULL, const OUString* pParent=NULL,
+ sal_Bool bDirectory=sal_False);
+
/**
Same as above; additionally the name starts with some given characters followed by a counter ( example:
rLeadingChars="abc" means "abc0","abc1" and so on, depending on existing files in the folder ).