diff options
author | Henry Castro <hcastro@collabora.com> | 2015-01-29 23:47:00 -0400 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-12 09:55:27 +0000 |
commit | 2b5915da481990fd6ea272104215d82b6fbf5dbb (patch) | |
tree | c42170e613b056cf0a157230b6ed2d4febf3d91c /sc/inc | |
parent | 4f2c8194f485b1527fb4f4dfe23ce804937f1f9c (diff) |
tdf#60573 Conditional formatting does not allow scrolling
If you need to apply conditional formatting to a cell not shown presently
on your screen you cannot scroll to the position you would like to use.
Change-Id: I18549316d2c725ce032a65cffb969bed21b771c3
Reviewed-on: https://gerrit.libreoffice.org/14258
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/sc.hrc | 2 | ||||
-rw-r--r-- | sc/inc/scabstdlg.hxx | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sc/inc/sc.hrc b/sc/inc/sc.hrc index 174db9b8625e..d70f489d9efa 100644 --- a/sc/inc/sc.hrc +++ b/sc/inc/sc.hrc @@ -1115,6 +1115,8 @@ #define RID_POPUPPANEL_APPEARANCE_CELL_LINESTYLE (SC_DIALOGS_START + 162) #define RID_POPUPPANEL_APPEARANCE_CELL_BORDERSTYLE (SC_DIALOGS_START + 163) +#define WID_CONDFRMT_REF (SC_DIALOGS_START + 164) + #define SC_DIALOGS_END (RID_POPUPPANEL_APPEARANCE_CELL_BORDERSTYLE + 1) #ifndef STD_MASKCOLOR diff --git a/sc/inc/scabstdlg.hxx b/sc/inc/scabstdlg.hxx index 6e6841b58cdb..3fcedfc23e8f 100644 --- a/sc/inc/scabstdlg.hxx +++ b/sc/inc/scabstdlg.hxx @@ -81,6 +81,8 @@ public: virtual ScConditionalFormatList* GetConditionalFormatList() = 0; virtual bool CondFormatsChanged() = 0; + + virtual ScConditionalFormat* GetCondFormatSelected() = 0; }; class AbstractScDataPilotDatabaseDlg :public VclAbstractDialog |