summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/instbdlg.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-06-04 10:35:10 +0000
committerOliver Bolte <obo@openoffice.org>2004-06-04 10:35:10 +0000
commit1ac1907b19882f25113000c2db1082541d2ce5b0 (patch)
tree111c9ec1f3bd447b676ef62218a65e5e7415b7b8 /sc/source/ui/inc/instbdlg.hxx
parent262790b4ea6df4a767e1ff67a3d39c14169934a2 (diff)
INTEGRATION: CWS rowlimit (1.2.334); FILE MERGED
2004/02/26 11:46:44 er 1.2.334.3: #i1967# type correctness 2004/01/13 20:04:18 er 1.2.334.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:59 er 1.2.334.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx
Diffstat (limited to 'sc/source/ui/inc/instbdlg.hxx')
-rw-r--r--sc/source/ui/inc/instbdlg.hxx17
1 files changed, 10 insertions, 7 deletions
diff --git a/sc/source/ui/inc/instbdlg.hxx b/sc/source/ui/inc/instbdlg.hxx
index 5f0145b84792..7f2b523c6a36 100644
--- a/sc/source/ui/inc/instbdlg.hxx
+++ b/sc/source/ui/inc/instbdlg.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: instbdlg.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: dr $ $Date: 2001-05-11 12:40:43 $
+ * last change: $Author: obo $ $Date: 2004-06-04 11:35:10 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,10 +62,10 @@
#ifndef SC_INSTBDLG_HXX
#define SC_INSTBDLG_HXX
-#ifndef _SV_HXX
+#ifndef SC_ADDRESS_HXX
+#include "address.hxx"
#endif
-
#ifndef _BUTTON_HXX //autogen
#include <vcl/button.hxx>
#endif
@@ -84,6 +84,9 @@
#ifndef _DIALOG_HXX //autogen
#include <vcl/dialog.hxx>
#endif
+#ifndef _SV_FIELD_HXX
+#include <vcl/field.hxx>
+#endif
#ifndef _EMBOBJ_HXX //autogen
#include <so3/embobj.hxx>
#endif
@@ -107,7 +110,7 @@ class ScDocShell;
class ScInsertTableDlg : public ModalDialog
{
public:
- ScInsertTableDlg( Window* pParent, ScViewData& rViewData, USHORT nTabCount);
+ ScInsertTableDlg( Window* pParent, ScViewData& rViewData, SCTAB nTabCount);
~ScInsertTableDlg();
virtual short Execute(); // ueberladen, um Dialog-Parent zu setzen
@@ -119,7 +122,7 @@ public:
const String* GetNextTable( USHORT* pN = NULL );
ScDocShell* GetDocShellTables() { return pDocShTables; }
BOOL IsTableBefore() { return aBtnBefore.IsChecked(); }
- USHORT GetTableCount() { return nTableCount;}
+ SCTAB GetTableCount() { return nTableCount;}
private:
RadioButton aBtnBefore;
@@ -147,7 +150,7 @@ private:
USHORT nSelTabIndex; // fuer GetFirstTable() / GetNextTable()
String aStrCurSelTable;
- USHORT nTableCount;
+ SCTAB nTableCount;
#ifdef SC_INSTBDLG_CXX
void Init_Impl();