summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/gui/dp_gui_dialog2.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-09-20 10:18:12 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-09-21 09:28:39 +0200
commitbe6a8677a6ddb6387272a78406ec2149c4319f3d (patch)
tree0e6be3608de08f831f596a5c2dc5a3590d4a62c6 /desktop/source/deployment/gui/dp_gui_dialog2.cxx
parent6058133765a1f874d6bf9fb9f4d0811db32adc10 (diff)
OSL_TRACE: Remove trailing newlines
Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines
Diffstat (limited to 'desktop/source/deployment/gui/dp_gui_dialog2.cxx')
-rw-r--r--desktop/source/deployment/gui/dp_gui_dialog2.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_dialog2.cxx b/desktop/source/deployment/gui/dp_gui_dialog2.cxx
index 01e7f92aac6b..a0768dd0806c 100644
--- a/desktop/source/deployment/gui/dp_gui_dialog2.cxx
+++ b/desktop/source/deployment/gui/dp_gui_dialog2.cxx
@@ -987,11 +987,11 @@ IMPL_LINK( ExtMgrDialog, startProgress, void*, _bLockInterface )
m_aProgressBar.SetValue( 100 );
m_xAbortChannel.clear();
- OSL_TRACE( " startProgress handler: stop\n" );
+ OSL_TRACE( " startProgress handler: stop" );
}
else
{
- OSL_TRACE( " startProgress handler: start\n" );
+ OSL_TRACE( " startProgress handler: start" );
}
m_aCancelBtn.Enable( bLockInterface );
@@ -1015,13 +1015,13 @@ void ExtMgrDialog::showProgress( bool _bStart )
{
m_nProgress = 0;
m_bStartProgress = true;
- OSL_TRACE( "showProgress start\n" );
+ OSL_TRACE( "showProgress start" );
}
else
{
m_nProgress = 100;
m_bStopProgress = true;
- OSL_TRACE( "showProgress stop!\n" );
+ OSL_TRACE( "showProgress stop!" );
}
DialogHelper::PostUserEvent( LINK( this, ExtMgrDialog, startProgress ), (void*) bStart );
@@ -1400,11 +1400,11 @@ IMPL_LINK( UpdateRequiredDialog, startProgress, void*, _bLockInterface )
if ( m_aProgressBar.IsVisible() )
m_aProgressBar.SetValue( 100 );
m_xAbortChannel.clear();
- OSL_TRACE( " startProgress handler: stop\n" );
+ OSL_TRACE( " startProgress handler: stop" );
}
else
{
- OSL_TRACE( " startProgress handler: start\n" );
+ OSL_TRACE( " startProgress handler: start" );
}
m_aCancelBtn.Enable( bLockInterface );
@@ -1425,13 +1425,13 @@ void UpdateRequiredDialog::showProgress( bool _bStart )
{
m_nProgress = 0;
m_bStartProgress = true;
- OSL_TRACE( "showProgress start\n" );
+ OSL_TRACE( "showProgress start" );
}
else
{
m_nProgress = 100;
m_bStopProgress = true;
- OSL_TRACE( "showProgress stop!\n" );
+ OSL_TRACE( "showProgress stop!" );
}
DialogHelper::PostUserEvent( LINK( this, UpdateRequiredDialog, startProgress ), (void*) bStart );