diff options
author | Jan Holesovsky <kendy@collabora.com> | 2018-01-15 19:56:52 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2018-01-15 23:10:37 +0100 |
commit | 1a156644e27a380daed217707a9cff9319f70a49 (patch) | |
tree | 8355bfa07c7c6357b8f1aa5ec5eda4937479bf93 /include | |
parent | f2e3d8d34b3d3993d46e38c660a60cdfc7950090 (diff) |
vcl: No need for a double-linked list of dialogs in Execute().
Instead use a simple vector.
Change-Id: I50652468cf06ba681d5caccb74a52b32c6c507a0
Reviewed-on: https://gerrit.libreoffice.org/47910
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/dialog.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/vcl/dialog.hxx b/include/vcl/dialog.hxx index 6dea53f47058..7fe00ba1c8c3 100644 --- a/include/vcl/dialog.hxx +++ b/include/vcl/dialog.hxx @@ -45,9 +45,7 @@ public: }; private: - VclPtr<Dialog> mpPrevExecuteDlg; - VclPtr<Dialog> mpNextExecuteDlg; - std::unique_ptr<DialogImpl> mpDialogImpl; + std::unique_ptr<DialogImpl> mpDialogImpl; long mnMousePositioned; bool mbInExecute; bool mbInClose; |