diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-08-19 09:43:10 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-08-19 09:43:10 +0000 |
commit | f593e3ebfe0087ab4aee54d38a84521369572351 (patch) | |
tree | e683fedc661695237396170574112bfd22c53854 /dbaccess/source/ui/inc | |
parent | 1a7d6eab7f4f310515569ab36887af8fd620e965 (diff) |
INTEGRATION: CWS dba31a (1.29.42); FILE MERGED
2008/07/04 20:10:32 fs 1.29.42.1: #i66628# functionality of RowChanged/ColChanged moved to base class
Diffstat (limited to 'dbaccess/source/ui/inc')
-rw-r--r-- | dbaccess/source/ui/inc/sbagrid.hxx | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/dbaccess/source/ui/inc/sbagrid.hxx b/dbaccess/source/ui/inc/sbagrid.hxx index ddb2b7570..d4a8f419d 100644 --- a/dbaccess/source/ui/inc/sbagrid.hxx +++ b/dbaccess/source/ui/inc/sbagrid.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: sbagrid.hxx,v $ - * $Revision: 1.30 $ + * $Revision: 1.31 $ * * This file is part of OpenOffice.org. * @@ -259,9 +259,8 @@ namespace dbaui protected: ::svx::ODataAccessDescriptor m_aDataDescriptor; SbaGridListener* m_pMasterListener; - ULONG m_nAsyncDropEvent; - USHORT m_nLastColId; - long m_nLastRowId; + + sal_Int32 m_nAsyncDropEvent; USHORT m_nCurrentActionColId; // ui actions (e.g. a context menu) may be performed on columns which aren't the current one @@ -319,9 +318,11 @@ namespace dbaui virtual void PreExecuteRowContextMenu(sal_uInt16 nRow, PopupMenu& rMenu); virtual void PostExecuteRowContextMenu(sal_uInt16 nRow, const PopupMenu& rMenu, sal_uInt16 nExecutionResult); + // DbGridControl overridables + virtual void onRowChange(); + virtual void onColumnChange(); + // my own overridables - virtual void RowChanged(); // the default implementation calls the according link (if set) - virtual void ColChanged(); virtual void BeforeDrop(); virtual void AfterDrop(); |