summaryrefslogtreecommitdiff
path: root/svtools/inc/table/tablemodel.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/inc/table/tablemodel.hxx')
-rw-r--r--svtools/inc/table/tablemodel.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/svtools/inc/table/tablemodel.hxx b/svtools/inc/table/tablemodel.hxx
index a27d6b0e5834..b2913615b201 100644
--- a/svtools/inc/table/tablemodel.hxx
+++ b/svtools/inc/table/tablemodel.hxx
@@ -29,7 +29,7 @@
#include <sal/types.h>
-#include <o3tl/optional.hxx>
+#include <optional>
#include <memory>
#include <vector>
#include <o3tl/typed_flags_set.hxx>
@@ -364,55 +364,55 @@ namespace svt { namespace table
If this value is not set, a default color from the style settings will be used.
*/
- virtual ::o3tl::optional< ::Color > getLineColor() const = 0;
+ virtual ::std::optional< ::Color > getLineColor() const = 0;
/** returns the color to be used for rendering the header background.
If this value is not set, a default color from the style settings will be used.
*/
- virtual ::o3tl::optional< ::Color > getHeaderBackgroundColor() const = 0;
+ virtual ::std::optional< ::Color > getHeaderBackgroundColor() const = 0;
/** returns the color to be used for rendering the header text.
If this value is not set, a default color from the style settings will be used.
*/
- virtual ::o3tl::optional< ::Color > getHeaderTextColor() const = 0;
+ virtual ::std::optional< ::Color > getHeaderTextColor() const = 0;
/** returns the color to be used for the background of selected cells, when the control has the focus
If this value is not set, a default color from the style settings will be used.
*/
- virtual ::o3tl::optional< ::Color > getActiveSelectionBackColor() const = 0;
+ virtual ::std::optional< ::Color > getActiveSelectionBackColor() const = 0;
/** returns the color to be used for the background of selected cells, when the control does not have the focus
If this value is not set, a default color from the style settings will be used.
*/
- virtual ::o3tl::optional< ::Color > getInactiveSelectionBackColor() const = 0;
+ virtual ::std::optional< ::Color > getInactiveSelectionBackColor() const = 0;
/** returns the color to be used for the text of selected cells, when the control has the focus
If this value is not set, a default color from the style settings will be used.
*/
- virtual ::o3tl::optional< ::Color > getActiveSelectionTextColor() const = 0;
+ virtual ::std::optional< ::Color > getActiveSelectionTextColor() const = 0;
/** returns the color to be used for the text of selected cells, when the control does not have the focus
If this value is not set, a default color from the style settings will be used.
*/
- virtual ::o3tl::optional< ::Color > getInactiveSelectionTextColor() const = 0;
+ virtual ::std::optional< ::Color > getInactiveSelectionTextColor() const = 0;
/** returns the color to be used for rendering cell texts.
If this value is not set, a default color from the style settings will be used.
*/
- virtual ::o3tl::optional< ::Color > getTextColor() const = 0;
+ virtual ::std::optional< ::Color > getTextColor() const = 0;
/** returns the color to be used for text lines (underline, strikethrough) when rendering cell text.
If this value is not set, a default color from the style settings will be used.
*/
- virtual ::o3tl::optional< ::Color > getTextLineColor() const = 0;
+ virtual ::std::optional< ::Color > getTextLineColor() const = 0;
/** returns the colors to be used for the row backgrounds.
@@ -425,7 +425,7 @@ namespace svt { namespace table
If value is a non-empty sequence, then rows will have the background colors as specified in the sequence,
in alternating order.
*/
- virtual ::o3tl::optional< ::std::vector< ::Color > >
+ virtual ::std::optional< ::std::vector< ::Color > >
getRowBackgroundColors() const = 0;
/** determines the vertical alignment of content within a cell