diff options
Diffstat (limited to 'fpicker/source/win32/VistaFilePickerImpl.cxx')
-rw-r--r-- | fpicker/source/win32/VistaFilePickerImpl.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fpicker/source/win32/VistaFilePickerImpl.cxx b/fpicker/source/win32/VistaFilePickerImpl.cxx index 2fef710b728a..b8642dd1f010 100644 --- a/fpicker/source/win32/VistaFilePickerImpl.cxx +++ b/fpicker/source/win32/VistaFilePickerImpl.cxx @@ -120,6 +120,8 @@ private: TFileDialog m_iDialog; }; +namespace { + template <class ComPtrDialog, REFCLSID CLSID> class TDialogImpl : public TDialogImplBase { public: @@ -142,6 +144,8 @@ public: } }; +} + using TSaveDialogImpl = TDialogImpl<TFileSaveDialog, CLSID_FileSaveDialog>; using TFolderPickerDialogImpl = TDialogImpl<TFileOpenDialog, CLSID_FileOpenDialog>; |