diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-03-09 18:26:40 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-03-09 18:26:40 +0100 |
commit | 5b25275002e12d2c9794ca0dd014e5d25efe486e (patch) | |
tree | 4c556bbd4fa8f47767357a0e042d3ceefdb39f88 /include | |
parent | 51a6fa350566350c84ceadb5df65a9b047ca77e8 (diff) |
No need for extra heap allocation
Change-Id: I0844a0a8a3476cdb007ab1d587b15ce26c68783e
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/brwbox.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svtools/brwbox.hxx b/include/svtools/brwbox.hxx index 4e9f2df8c695..fd6b18b6c24c 100644 --- a/include/svtools/brwbox.hxx +++ b/include/svtools/brwbox.hxx @@ -240,7 +240,7 @@ private: TriState bHideCursor; // hide cursor (frame) Range aSelRange; // for selection expansion - BrowserColumns* pCols; // array of column-descriptions + BrowserColumns pCols; // array of column-descriptions union { MultiSelection* pSel; // selected rows for multi-selection |