fpicker/source/win32/VistaFilePickerImpl.hxx | 2 +- fpicker/source/win32/vistatypes.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-)
New commits: commit 3b5d452ae2a363a7c3507e4bd15aab3c16708275 Author: Mike Kaganski <[email protected]> AuthorDate: Sat Jan 24 17:13:03 2026 +0100 Commit: Mike Kaganski <[email protected]> CommitDate: Sat Jan 24 18:40:21 2026 +0100 Drop a typedef used only once Change-Id: Ifd1fff885d308e5376f600e617a26c90c093ab4e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/198045 Reviewed-by: Mike Kaganski <[email protected]> Tested-by: Jenkins diff --git a/fpicker/source/win32/VistaFilePickerImpl.hxx b/fpicker/source/win32/VistaFilePickerImpl.hxx index f2cb2c27427e..a3fad2f7b5f4 100644 --- a/fpicker/source/win32/VistaFilePickerImpl.hxx +++ b/fpicker/source/win32/VistaFilePickerImpl.hxx @@ -286,7 +286,7 @@ class VistaFilePickerImpl : public IVistaFilePickerInternalNotify /** help us to handle dialog events and provide them to interested office * listener. */ - TFileDialogEvents m_iEventHandler; + sal::systools::COMReference<IFileDialogEvents> m_iEventHandler; /// @todo document me diff --git a/fpicker/source/win32/vistatypes.h b/fpicker/source/win32/vistatypes.h index a6a08faa5915..bae3e17eb85c 100644 --- a/fpicker/source/win32/vistatypes.h +++ b/fpicker/source/win32/vistatypes.h @@ -33,7 +33,6 @@ namespace vista{ typedef sal::systools::COMReference<IFileDialog> TFileDialog; typedef sal::systools::COMReference<IFileOpenDialog> TFileOpenDialog; typedef sal::systools::COMReference<IFileSaveDialog> TFileSaveDialog; -typedef sal::systools::COMReference<IFileDialogEvents> TFileDialogEvents; typedef sal::systools::COMReference<IFileDialogCustomize> TFileDialogCustomize; } // namespace vista
