diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2018-01-22 17:47:04 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2018-01-26 21:12:17 +0100 |
commit | b5f8b046008a27f1da58b934dbe61c0decf36612 (patch) | |
tree | ffcf7ac5f8552feeeacf43579b6d80158acee563 /sc/inc | |
parent | c48dd8ee185b24322ce497ee74896c7288db008e (diff) |
tdf#98931 Add option to sort boundary image-only columns
A similiar option exists for comments-only columns.
If enabled, image-only columns are considered when sorting (and selected).
This is the default behavior, but can now be disabled.
Change-Id: Ie9dfdf913ea5904480c96375beb4e25bcb880785
Reviewed-on: https://gerrit.libreoffice.org/48351
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/sc.hrc | 1 | ||||
-rw-r--r-- | sc/inc/sortparam.hxx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sc/inc/sc.hrc b/sc/inc/sc.hrc index e4823e58ff44..71be34add605 100644 --- a/sc/inc/sc.hrc +++ b/sc/inc/sc.hrc @@ -625,6 +625,7 @@ #define SID_SORT_USERDEF (SC_PARAM_START+4) #define SID_SORT_NATURALSORT (SC_PARAM_START+5) #define SID_SORT_INCCOMMENTS (SC_PARAM_START+6) +#define SID_SORT_INCIMAGES (SC_PARAM_START+7) // Sidebar ------------------------------------------------------------- diff --git a/sc/inc/sortparam.hxx b/sc/inc/sortparam.hxx index d0cd0204d518..6eba07e64487 100644 --- a/sc/inc/sortparam.hxx +++ b/sc/inc/sortparam.hxx @@ -50,6 +50,7 @@ struct SC_DLLPUBLIC ScSortParam bool bCaseSens; bool bNaturalSort; bool bIncludeComments; + bool bIncludeGraphicObjects; bool bUserDef; bool bIncludePattern; bool bInplace; |