summaryrefslogtreecommitdiff
path: root/sfx2/source/dialog/filedlghelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/dialog/filedlghelper.cxx')
-rw-r--r--sfx2/source/dialog/filedlghelper.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/dialog/filedlghelper.cxx b/sfx2/source/dialog/filedlghelper.cxx
index f774b4eb3520..8245d08b31ec 100644
--- a/sfx2/source/dialog/filedlghelper.cxx
+++ b/sfx2/source/dialog/filedlghelper.cxx
@@ -1649,7 +1649,7 @@ void FileDialogHelper_Impl::verifyPath()
return;
}
if (maFileName.indexOf('/') != -1) {
- SAL_WARN("sfx2", maFileName << " contains /");
+ SAL_WARN("sfx2.dialog", maFileName << " contains /");
return;
}
url.insertName(
@@ -1660,7 +1660,7 @@ void FileDialogHelper_Impl::verifyPath()
url.GetMainURL(INetURLObject::NO_DECODE), sysPathU);
if (e != osl::FileBase::E_None) {
SAL_WARN(
- "sfx2",
+ "sfx2.dialog",
"getSystemPathFromFileURL("
<< url.GetMainURL(INetURLObject::NO_DECODE) << ") failed with "
<< +e);
@@ -1673,7 +1673,7 @@ void FileDialogHelper_Impl::verifyPath()
| RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR)))
{
SAL_WARN(
- "sfx2",
+ "sfx2.dialog",
"convertToString(" << sysPathU << ") failed for encoding "
<< +osl_getThreadTextEncoding());
return;
@@ -1681,7 +1681,7 @@ void FileDialogHelper_Impl::verifyPath()
struct stat aFileStat;
if (stat(sysPathC.getStr(), &aFileStat) == -1) {
SAL_WARN(
- "sfx2",
+ "sfx2.dialog",
"stat(" << sysPathC.getStr() << ") failed with errno " << errno);
return;
}