summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-03-05 16:12:22 +0000
committerKurt Zenker <kz@openoffice.org>2008-03-05 16:12:22 +0000
commitd89e7239746109d154799c8a944da829b50d6fa6 (patch)
treee8dca15f61bb75b224901cedab6e574d4c73a958 /extensions
parent45cf5b45b8b1abb79918cb3bae0899346e7d4908 (diff)
INTEGRATION: CWS dba30a (1.16.82); FILE MERGED
2008/02/04 13:51:58 fs 1.16.82.2: RESYNC: (1.16-1.17); FILE MERGED 2008/01/23 14:45:57 fs 1.16.82.1: support for non-numeric HelpURLs
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/propctrlr/browserline.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/extensions/source/propctrlr/browserline.cxx b/extensions/source/propctrlr/browserline.cxx
index f36dc2fe7ef2..5cae38c8d0ac 100644
--- a/extensions/source/propctrlr/browserline.cxx
+++ b/extensions/source/propctrlr/browserline.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: browserline.cxx,v $
*
- * $Revision: 1.17 $
+ * $Revision: 1.18 $
*
- * last change: $Author: ihi $ $Date: 2008-01-14 14:55:45 $
+ * last change: $Author: kz $ $Date: 2008-03-05 17:12:22 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -120,19 +120,19 @@ namespace pcr
}
//------------------------------------------------------------------
- void OBrowserLine::SetComponentHelpIds( sal_uInt32 _nControlId, sal_uInt32 _bPrimaryButtonId, sal_uInt32 _nSecondaryButtonId )
+ void OBrowserLine::SetComponentHelpIds( const SmartId& _rHelpId, sal_uInt32 _bPrimaryButtonId, sal_uInt32 _nSecondaryButtonId )
{
if ( m_pControlWindow )
- m_pControlWindow->SetHelpId( _nControlId );
+ m_pControlWindow->SetSmartHelpId( _rHelpId );
if ( m_pBrowseButton )
{
- m_pBrowseButton->SetHelpId( _nControlId );
+ m_pBrowseButton->SetSmartHelpId( _rHelpId );
m_pBrowseButton->SetUniqueId( _bPrimaryButtonId );
if ( m_pAdditionalBrowseButton )
{
- m_pAdditionalBrowseButton->SetHelpId( _nControlId );
+ m_pAdditionalBrowseButton->SetSmartHelpId( _rHelpId );
m_pAdditionalBrowseButton->SetUniqueId( _nSecondaryButtonId );
}
}