diff options
author | Patrick Luby <pluby@openoffice.org> | 2000-11-13 23:18:56 +0000 |
---|---|---|
committer | Patrick Luby <pluby@openoffice.org> | 2000-11-13 23:18:56 +0000 |
commit | 7c40f1b0cd722bd46d07d019e3f68ceac65b15c0 (patch) | |
tree | 73919bf0653340d9396564dad3900cd24cd094b5 /vcl | |
parent | 661ed26adc1e3489491dc40eb4d68868c4c7b215 (diff) |
Changed VCLWindow_SetTitle function to VCLWindow_setTitle to be consistent with other C function naming format.
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/aqua/source/window/salframe.cxx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/vcl/aqua/source/window/salframe.cxx b/vcl/aqua/source/window/salframe.cxx index 173568183b8e..3552881cb6ea 100644 --- a/vcl/aqua/source/window/salframe.cxx +++ b/vcl/aqua/source/window/salframe.cxx @@ -2,9 +2,9 @@ * * $RCSfile: salframe.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: ganaya $ $Date: 2000-11-13 21:12:25 $ + * last change: $Author: pluby $ $Date: 2000-11-14 00:18:56 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -166,9 +166,11 @@ BOOL SalFrame::PostEvent( void* pData ) void SalFrame::SetTitle( const XubString& rTitle ) { - ByteString aByteTitle( rTitle, gsl_getSystemTextEncoding() ); - char *pTitle = (char*)aByteTitle.GetBuffer(); - VCLWindow_SetTitle(maFrameData.mhWnd, pTitle); + + ByteString aByteTitle( rTitle, gsl_getSystemTextEncoding() ); + char *pTitle = (char *)aByteTitle.GetBuffer(); + VCLWindow_setTitle(maFrameData.mhWnd, pTitle); + } // ----------------------------------------------------------------------- |