summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-13 04:28:39 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-13 04:28:39 +0100
commit94a5f6b6703d103d76a6954083ba25202506a5bd (patch)
tree1eb2c8b7a1e3d42c4eb50491d938a457b08694cc /vcl/source
parentc083e0f22e2d5bcd7d3e686b18be5f415ffebdc6 (diff)
fix mac build
Change-Id: Ib7aa2ffd351e85e76c84cd03c2a3b31c6b2c87ac
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/app/dbggui.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/dbggui.cxx b/vcl/source/app/dbggui.cxx
index 0b544e28f49b..1fe7385eb097 100644
--- a/vcl/source/app/dbggui.cxx
+++ b/vcl/source/app/dbggui.cxx
@@ -629,7 +629,7 @@ void DbgWindow::InsertLine( const OUString& rLine )
maLstBox.SetEntryData( nInsertionPos, reinterpret_cast< void* >( 0x00000001 ) );
bFirstEntry = sal_False;
- aStr.replaceAt( 0, nPos+1, "" );
+ aStr = aStr.replaceAt( 0, nPos+1, "" );
nPos = aStr.indexOf( _LF );
}
if ( maLstBox.GetEntryCount() >= DBGWIN_MAXLINES )