diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-03-26 14:22:55 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-03-30 09:23:53 +0200 |
commit | 741599f3e56c2ae6656377cdac6bc19512513876 (patch) | |
tree | 6c985c4640c9d3c24c61f1303e9223c9f356c0d7 /include/svx/sdr | |
parent | 986c685e9f324abe8d0f722aa5310477686cde59 (diff) |
SdrMarkView tiled rendering: partially disable SdrTableObj graphic selection
If one or more cells are selected in an Impress table, then the shape
already provides its own text selection, don't overwrite it with the
generic graphic selection in this case.
Change-Id: I4f84a220df6cd9d225ed67d6f70ba2df6eff38af
Diffstat (limited to 'include/svx/sdr')
-rw-r--r-- | include/svx/sdr/table/tablecontroller.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/sdr/table/tablecontroller.hxx b/include/svx/sdr/table/tablecontroller.hxx index 92d893dfc26b..b6d610cbd9d3 100644 --- a/include/svx/sdr/table/tablecontroller.hxx +++ b/include/svx/sdr/table/tablecontroller.hxx @@ -92,7 +92,7 @@ public: SVX_DLLPRIVATE virtual bool GetMarkedObjModel( SdrPage* pNewPage ) SAL_OVERRIDE; SVX_DLLPRIVATE virtual bool PasteObjModel( const SdrModel& rModel ) SAL_OVERRIDE; - SVX_DLLPRIVATE bool hasSelectedCells() const { return mbCellSelectionMode || mpView->IsTextEdit(); } + SVX_DLLPRIVATE virtual bool hasSelectedCells() const SAL_OVERRIDE { return mbCellSelectionMode || mpView->IsTextEdit(); } void getSelectedCells( CellPos& rFirstPos, CellPos& rLastPos ); void setSelectedCells( const CellPos& rFirstPos, const CellPos& rLastPos ); |