summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-10 16:11:47 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-13 16:50:42 +0100
commit52aa2c2de686ab61a5a7257a0a62111366407fa0 (patch)
tree5046f314e50d16364874c5213770f412c4fe0a83 /sfx2
parent35cf2a53c1c18e96fd28ab10c5ab89768cdd31cd (diff)
Don't use GetBuffer() on char*
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/control/dispatch.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/control/dispatch.cxx b/sfx2/source/control/dispatch.cxx
index c2c0824c8a..bfbcaac4a3 100644
--- a/sfx2/source/control/dispatch.cxx
+++ b/sfx2/source/control/dispatch.cxx
@@ -2697,7 +2697,7 @@ void SfxDispatcher::DebugOutput_Impl() const
{
SfxShell *pShell = GetShell(nShell-1);
const SfxInterface *pIFace = pShell->GetInterface();
- OSL_TRACE(pIFace->GetClassName().GetBuffer());
+ OSL_TRACE(pIFace->GetClassName());
}
DbgGetData()->nTraceOut = nOld;