summaryrefslogtreecommitdiff
path: root/include/svtools/table
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-23 09:07:12 +0200
committerNoel Grandin <noel@peralex.com>2015-10-23 10:48:50 +0200
commitc06e2fcc2c03c4b6353bd9a1e282c36de872d777 (patch)
tree69cdc7e4bf9d658b108d2a71a8d9ed41c518ed0d /include/svtools/table
parenta1ff0745cc4f78777e8dba1e7bb52d18386d7394 (diff)
com::sun::star->css in include/sot to include/typelib
Change-Id: I9cd92b53370a6b6018d2f7c648890f9c014a27de
Diffstat (limited to 'include/svtools/table')
-rw-r--r--include/svtools/table/tablemodel.hxx10
-rw-r--r--include/svtools/table/tablerenderer.hxx4
2 files changed, 7 insertions, 7 deletions
diff --git a/include/svtools/table/tablemodel.hxx b/include/svtools/table/tablemodel.hxx
index 94265a8ed02e..a134575cba56 100644
--- a/include/svtools/table/tablemodel.hxx
+++ b/include/svtools/table/tablemodel.hxx
@@ -225,7 +225,7 @@ namespace svt { namespace table
/** retrieves the horizontal alignment to be used for content in this cell
*/
- virtual ::com::sun::star::style::HorizontalAlignment getHorizontalAlign() = 0;
+ virtual css::style::HorizontalAlignment getHorizontalAlign() = 0;
/// deletes the column model instance
virtual ~IColumnModel() { }
@@ -336,7 +336,7 @@ namespace svt { namespace table
/** retrieves the content of the given cell
*/
- virtual void getCellContent( ColPos const i_col, RowPos const i_row, ::com::sun::star::uno::Any& o_cellContent ) = 0;
+ virtual void getCellContent( ColPos const i_col, RowPos const i_row, css::uno::Any& o_cellContent ) = 0;
/** returns an object which should be displayed as tooltip for the given cell
@@ -353,11 +353,11 @@ namespace svt { namespace table
@param o_cellToolTip
takes the tooltip object upon return.
*/
- virtual void getCellToolTip( ColPos const i_col, RowPos const i_row, ::com::sun::star::uno::Any & o_cellToolTip ) = 0;
+ virtual void getCellToolTip( ColPos const i_col, RowPos const i_row, css::uno::Any & o_cellToolTip ) = 0;
/** retrieves title of a given row
*/
- virtual ::com::sun::star::uno::Any getRowHeading( RowPos const i_rowPos ) const = 0;
+ virtual css::uno::Any getRowHeading( RowPos const i_rowPos ) const = 0;
/** returns the color to be used for rendering the grid lines.
@@ -429,7 +429,7 @@ namespace svt { namespace table
/** determines the vertical alignment of content within a cell
*/
- virtual ::com::sun::star::style::VerticalAlignment getVerticalAlign() const = 0;
+ virtual css::style::VerticalAlignment getVerticalAlign() const = 0;
/** returns an adapter to the sorting functionality of the model
diff --git a/include/svtools/table/tablerenderer.hxx b/include/svtools/table/tablerenderer.hxx
index f34e386d82d6..f11729347c7c 100644
--- a/include/svtools/table/tablerenderer.hxx
+++ b/include/svtools/table/tablerenderer.hxx
@@ -232,7 +232,7 @@ namespace svt { namespace table
given area.
*/
virtual bool FitsIntoCell(
- ::com::sun::star::uno::Any const & i_cellContent,
+ css::uno::Any const & i_cellContent,
OutputDevice& i_targetDevice, Rectangle const & i_targetArea
) const = 0;
@@ -246,7 +246,7 @@ namespace svt { namespace table
<TRUE/> if and only if the content could be formatted as string
*/
virtual bool GetFormattedCellString(
- ::com::sun::star::uno::Any const & i_cellValue,
+ css::uno::Any const & i_cellValue,
OUString & o_cellString
) const = 0;