summaryrefslogtreecommitdiffstats
path: root/vcl/workben/svpclient.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/workben/svpclient.cxx')
-rw-r--r--vcl/workben/svpclient.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/workben/svpclient.cxx b/vcl/workben/svpclient.cxx
index 9125cb1120ca..61fe3e056349 100644
--- a/vcl/workben/svpclient.cxx
+++ b/vcl/workben/svpclient.cxx
@@ -104,7 +104,7 @@ public:
void Paint( const Rectangle& rRect );
void Resize();
- sal_Bool Close();
+ bool Close();
void parseList( const OString& rList );
OString processCommand( const OString& rCommand );
@@ -149,9 +149,9 @@ MyWin::MyWin( Window* pParent, WinBits nWinStyle ) :
m_aQuitButton.Show();
}
-sal_Bool MyWin::Close()
+bool MyWin::Close()
{
- sal_Bool bRet = WorkWindow::Close();
+ bool bRet = WorkWindow::Close();
if( bRet )
Application::Quit();
return bRet;