summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-05 12:16:37 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-05 12:16:37 +0100
commit60312aa1f8fc2030fdd5c9eeb2815c5fc6f843ca (patch)
tree7980477703f08a86bb1f261d810fec67dfb47c89 /toolkit
parentb198150a3cdb7f1f3838bf39853f2ea680bcaf6c (diff)
gridsort: member names usually start with UpperCase - corrected this for GridColumn/DataEvent, for sake of consistency
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/controls/grid/gridcolumn.cxx4
-rw-r--r--toolkit/source/controls/grid/gridcolumn.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/toolkit/source/controls/grid/gridcolumn.cxx b/toolkit/source/controls/grid/gridcolumn.cxx
index d681a3101b12..cc0790beb651 100644
--- a/toolkit/source/controls/grid/gridcolumn.cxx
+++ b/toolkit/source/controls/grid/gridcolumn.cxx
@@ -87,10 +87,10 @@ namespace toolkit
}
//------------------------------------------------------------------------------------------------------------------
- void GridColumn::broadcast_changed( ::rtl::OUString name, Any oldValue, Any newValue, ::osl::ClearableMutexGuard& i_Guard )
+ void GridColumn::broadcast_changed( ::rtl::OUString name, Any i_oldValue, Any i_newValue, ::osl::ClearableMutexGuard& i_Guard )
{
Reference< XInterface > xSource( static_cast< ::cppu::OWeakObject* >( this ) );
- GridColumnEvent aEvent( xSource, name, oldValue, newValue, m_nIndex);
+ GridColumnEvent aEvent( xSource, name, i_oldValue, i_newValue, m_nIndex);
::cppu::OInterfaceContainerHelper* pIter = rBHelper.getContainer( XGridColumnListener::static_type() );
diff --git a/toolkit/source/controls/grid/gridcolumn.hxx b/toolkit/source/controls/grid/gridcolumn.hxx
index b8d70551032a..a099e9c2c01d 100644
--- a/toolkit/source/controls/grid/gridcolumn.hxx
+++ b/toolkit/source/controls/grid/gridcolumn.hxx
@@ -91,8 +91,8 @@ public:
private:
void broadcast_changed(
::rtl::OUString name,
- ::com::sun::star::uno::Any oldValue,
- ::com::sun::star::uno::Any newValue,
+ ::com::sun::star::uno::Any i_oldValue,
+ ::com::sun::star::uno::Any i_newValue,
::osl::ClearableMutexGuard& i_Guard
);