diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-11-23 23:34:18 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-11-23 23:34:18 -0500 |
commit | 92e03b82880ab1c83a1bfd59e179e3fb9f565257 (patch) | |
tree | d96c4e3098dc2e52b2b44c5bbb3065557416be29 /sc/source | |
parent | c4a3e29626126658cfb9e8755e9f98cfc4500abd (diff) |
Cleaned up the ScTable declaration a bit.
* make it officially non-copyable. It was never copied anyway.
* retire std::auto_ptr which is deprecated. Let's use boost::scoped_ptr.
* some unused typedef's.
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/core/data/cell.cxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/table1.cxx | 1 | ||||
-rw-r--r-- | sc/source/core/data/table2.cxx | 1 | ||||
-rw-r--r-- | sc/source/ui/vba/vbaworksheet.cxx | 1 |
4 files changed, 5 insertions, 0 deletions
diff --git a/sc/source/core/data/cell.cxx b/sc/source/core/data/cell.cxx index 88fcbfd631e8..926713387b74 100644 --- a/sc/source/core/data/cell.cxx +++ b/sc/source/core/data/cell.cxx @@ -53,6 +53,8 @@ #include "postit.hxx" #include "externalrefmgr.hxx" #include "macromgr.hxx" +#include "dbdata.hxx" + #include <editeng/editobj.hxx> #include <svl/intitem.hxx> #include <editeng/flditem.hxx> diff --git a/sc/source/core/data/table1.cxx b/sc/source/core/data/table1.cxx index 0505da75432a..e88fba61c1e5 100644 --- a/sc/source/core/data/table1.cxx +++ b/sc/source/core/data/table1.cxx @@ -55,6 +55,7 @@ #include "tabprotection.hxx" #include "sheetevents.hxx" #include "segmenttree.hxx" +#include "dbdata.hxx" #include <vector> diff --git a/sc/source/core/data/table2.cxx b/sc/source/core/data/table2.cxx index beb638bf7660..75b5c4460a25 100644 --- a/sc/source/core/data/table2.cxx +++ b/sc/source/core/data/table2.cxx @@ -62,6 +62,7 @@ #include "segmenttree.hxx" #include "queryparam.hxx" #include "queryentry.hxx" +#include "dbdata.hxx" // STATIC DATA ----------------------------------------------------------- diff --git a/sc/source/ui/vba/vbaworksheet.cxx b/sc/source/ui/vba/vbaworksheet.cxx index cea1ee53440f..5ccab929c129 100644 --- a/sc/source/ui/vba/vbaworksheet.cxx +++ b/sc/source/ui/vba/vbaworksheet.cxx @@ -109,6 +109,7 @@ #include "vbasheetobjects.hxx" #include "viewuno.hxx" #include "markdata.hxx" +#include "dbdata.hxx" #include "attrib.hxx" |