summaryrefslogtreecommitdiff
path: root/sc/source/ui/miscdlgs/scuiautofmt.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-12-09 13:43:27 +0100
committerMichael Stahl <mstahl@redhat.com>2015-12-15 17:44:34 +0100
commit14a0115b9580d541971440c085220328c5aed92e (patch)
tree7cf57e642c2dfd5aa70acd5d4955a1a409a8f410 /sc/source/ui/miscdlgs/scuiautofmt.cxx
parent27f5679c84602713e74c947d88e72cfafc02fbc8 (diff)
sc: replace boost::ptr_map with std::map<std::unique_ptr>
Change-Id: I311d3a3e35ae4321e92e1fe2e0651b3b4899c0bd
Diffstat (limited to 'sc/source/ui/miscdlgs/scuiautofmt.cxx')
-rw-r--r--sc/source/ui/miscdlgs/scuiautofmt.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/miscdlgs/scuiautofmt.cxx b/sc/source/ui/miscdlgs/scuiautofmt.cxx
index e8190e49cc17..ace439883bee 100644
--- a/sc/source/ui/miscdlgs/scuiautofmt.cxx
+++ b/sc/source/ui/miscdlgs/scuiautofmt.cxx
@@ -84,7 +84,7 @@ ScAutoFormatDlg::ScAutoFormatDlg(vcl::Window* pParent,
Init();
ScAutoFormat::iterator it = pFormat->begin();
- m_pWndPreview->NotifyChange(it->second);
+ m_pWndPreview->NotifyChange(it->second.get());
}
ScAutoFormatDlg::~ScAutoFormatDlg()