summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dbaccess/source/ui/browser/sbagrid.cxx8
-rw-r--r--dbaccess/source/ui/inc/sbagrid.hxx8
2 files changed, 8 insertions, 8 deletions
diff --git a/dbaccess/source/ui/browser/sbagrid.cxx b/dbaccess/source/ui/browser/sbagrid.cxx
index e5c4bd4ed3e4..e800e5a84c30 100644
--- a/dbaccess/source/ui/browser/sbagrid.cxx
+++ b/dbaccess/source/ui/browser/sbagrid.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sbagrid.cxx,v $
*
- * $Revision: 1.29 $
+ * $Revision: 1.30 $
*
- * last change: $Author: fs $ $Date: 2001-04-19 11:52:17 $
+ * last change: $Author: fs $ $Date: 2001-05-03 09:23:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1761,7 +1761,7 @@ void SbaGridControl::DoColumnDrag(sal_uInt16 nColumnPos)
}
// -----------------------------------------------------------------------
-void SbaGridControl::DoRowDrag(sal_uInt16 nRowPos)
+void SbaGridControl::DoRowDrag(sal_Int16 nRowPos)
{
Reference< XPropertySet > xDataSource(getDataSource(), UNO_QUERY);
DBG_ASSERT(xDataSource.is(), "SbaGridControl::DoRowDrag : invalid data source !");
@@ -1788,7 +1788,7 @@ void SbaGridControl::DoRowDrag(sal_uInt16 nRowPos)
}
// -----------------------------------------------------------------------
-void SbaGridControl::DoFieldDrag(sal_uInt16 nColumnPos, sal_uInt16 nRowPos)
+void SbaGridControl::DoFieldDrag(sal_uInt16 nColumnPos, sal_Int16 nRowPos)
{
// the only thing to do here is dragging the pure cell text
// the old implementation copied a SBA_FIELDDATAEXCHANGE_FORMAT, too, (which was rather expensive to obtain),
diff --git a/dbaccess/source/ui/inc/sbagrid.hxx b/dbaccess/source/ui/inc/sbagrid.hxx
index 9247d8cc70a8..c06f149aa6c8 100644
--- a/dbaccess/source/ui/inc/sbagrid.hxx
+++ b/dbaccess/source/ui/inc/sbagrid.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sbagrid.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: fs $ $Date: 2001-04-10 08:52:06 $
+ * last change: $Author: fs $ $Date: 2001-05-03 09:23:12 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -336,8 +336,8 @@ namespace dbaui
// drag events
virtual void DoColumnDrag(sal_uInt16 nColumnPos);
- virtual void DoRowDrag(sal_uInt16 nRowPos);
- virtual void DoFieldDrag(sal_uInt16 nColumnPos, sal_uInt16 nRowPos);
+ virtual void DoRowDrag(sal_Int16 nRowPos);
+ virtual void DoFieldDrag(sal_uInt16 nColumnPos, sal_Int16 nRowPos);
void refresh();