diff options
Diffstat (limited to 'sc/source/ui/inc/xmlsourcedlg.hxx')
-rw-r--r-- | sc/source/ui/inc/xmlsourcedlg.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sc/source/ui/inc/xmlsourcedlg.hxx b/sc/source/ui/inc/xmlsourcedlg.hxx index dc73b0382a1e..452bac0f8946 100644 --- a/sc/source/ui/inc/xmlsourcedlg.hxx +++ b/sc/source/ui/inc/xmlsourcedlg.hxx @@ -28,13 +28,13 @@ struct CustomCompare : mrLbTree(rLbTree) { } - bool operator()(const std::unique_ptr<weld::TreeIter>& lhs, const std::unique_ptr<weld::TreeIter>& rhs) const + bool operator()(const std::unique_ptr<weld::TreeIter>& lhs, + const std::unique_ptr<weld::TreeIter>& rhs) const { return mrLbTree.iter_compare(*lhs, *rhs) == -1; } }; - class ScXMLSourceDlg : public ScAnyRefDlgController { OUString maSrcPath; @@ -75,7 +75,6 @@ public: virtual void Close() override; private: - void SelectSourceFile(); void LoadSourceFileStructure(const OUString& rPath); void TreeItemSelected(); |