summaryrefslogtreecommitdiff
path: root/sw/source/ui/inc/dbinsdlg.hxx
diff options
context:
space:
mode:
authorOliver Specht <os@openoffice.org>2000-11-13 07:32:00 +0000
committerOliver Specht <os@openoffice.org>2000-11-13 07:32:00 +0000
commit8f38a32b68e47319a506fa8b4a8e60f03071ed5e (patch)
tree7523a47093fd09470648e102e47e01a24cd9793c /sw/source/ui/inc/dbinsdlg.hxx
parentc16dc3948793b4b246fcf3f8be82298131ef0d55 (diff)
added methods for dispatch interface
Diffstat (limited to 'sw/source/ui/inc/dbinsdlg.hxx')
-rw-r--r--sw/source/ui/inc/dbinsdlg.hxx24
1 files changed, 17 insertions, 7 deletions
diff --git a/sw/source/ui/inc/dbinsdlg.hxx b/sw/source/ui/inc/dbinsdlg.hxx
index 491340123a8a..36775aaf73fc 100644
--- a/sw/source/ui/inc/dbinsdlg.hxx
+++ b/sw/source/ui/inc/dbinsdlg.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dbinsdlg.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: os $ $Date: 2000-10-27 11:24:26 $
+ * last change: $Author: os $ $Date: 2000-11-13 08:32:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -93,13 +93,22 @@
#ifndef _COM_SUN_STAR_UNO_REFERENCE_H_
#include <com/sun/star/uno/Reference.h>
#endif
-namespace com{namespace sun{namespace star{namespace sdbcx{
+#ifndef _COM_SUN_STAR_UNO_SEQUENCE_H_
+#include <com/sun/star/uno/Sequence.h>
+#endif
+namespace com{namespace sun{namespace star{
+ namespace sdbcx{
class XColumnsSupplier;
-}}}}
+ }
+ namespace sdbc{
+ class XDataSource;
+ class XConnection;
+ class XResultSet;
+ }
+}}}
class SwTableAutoFmt;
class SwView;
-class SbaSelectionList;
class _DB_ColumnConfig;
class SfxItemSet;
class SwTableRep;
@@ -216,9 +225,10 @@ public:
virtual ~SwInsertDBColAutoPilot();
- void DataToDoc( const SbaSelectionList*,
+ void DataToDoc( const ::com::sun::star::uno::Sequence<sal_Int32>& rSelection,
::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDataSource> rxSource,
- ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection> xConnection);
+ ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection> xConnection,
+ ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet > xResultSet);
};