diff options
author | Mihaela Kedikova <misheto@openoffice.org> | 2010-04-30 10:22:04 +0200 |
---|---|---|
committer | Mihaela Kedikova <misheto@openoffice.org> | 2010-04-30 10:22:04 +0200 |
commit | 54841bec35525663331fcc8081c316d264332277 (patch) | |
tree | ed4f88bb179a463856617732d979f0b14b4ff1c8 /svtools | |
parent | 65ccc6d78b7de8259a86726e6715db1ce9e97ebd (diff) |
gridcontrol_03: bug fixes
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/inc/svtools/table/tabletypes.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svtools/inc/svtools/table/tabletypes.hxx b/svtools/inc/svtools/table/tabletypes.hxx index f423b64c2faa..645120e30d4b 100644 --- a/svtools/inc/svtools/table/tabletypes.hxx +++ b/svtools/inc/svtools/table/tabletypes.hxx @@ -56,17 +56,17 @@ namespace svt { namespace table /** special column width value which indicates that the column should be automatically resized to fit the view */ -#define COLWIDTH_FIT_TO_VIEW ((TableMetrics)-1) +#define COLWIDTH_FIT_TO_VIEW ((::svt::table::TableMetrics)-1) /// denotes the column containing the row headers -#define COL_ROW_HEADERS ((ColPos)-1) +#define COL_ROW_HEADERS ((::svt::table::ColPos)-1) /// denotes the row containing the column headers -#define ROW_COL_HEADERS ((RowPos)-1) +#define ROW_COL_HEADERS ((::svt::table::RowPos)-1) /// denotes an invalid column index -#define COL_INVALID ((ColPos)-2) +#define COL_INVALID ((::svt::table::ColPos)-2) /// denotes an invalid row index -#define ROW_INVALID ((RowPos)-2) +#define ROW_INVALID ((::svt::table::RowPos)-2) //........................................................................ |