# HG changeset patch # User Edouard Tisserant # Date 1659974843 -7200 # Node ID b46af5b80c7d6de71748316fc7751f6d4364cc55 # Parent fdd4b171ac6cd34f6d0f2caa287f807ab9495d99 IDE: wxPython4 consequences : wx.OPEN -> wx.FD_OPEN diff -r fdd4b171ac6c -r b46af5b80c7d etherlab/ConfigEditor.py --- a/etherlab/ConfigEditor.py Sun Jul 31 12:27:47 2022 +0200 +++ b/etherlab/ConfigEditor.py Mon Aug 08 18:07:23 2022 +0200 @@ -1240,7 +1240,7 @@ _("Choose an XML file"), os.getcwd(), "", _("XML files (*.xml)|*.xml|All files|*.*"), - wx.OPEN) + wx.FD_OPEN) if dialog.ShowModal() == wx.ID_OK: filepath = dialog.GetPath() diff -r fdd4b171ac6c -r b46af5b80c7d etherlab/EtherCATManagementEditor.py --- a/etherlab/EtherCATManagementEditor.py Sun Jul 31 12:27:47 2022 +0200 +++ b/etherlab/EtherCATManagementEditor.py Mon Aug 08 18:07:23 2022 +0200 @@ -1497,7 +1497,7 @@ if check_connect_flag: status, _log_count = self.Controler.GetCTRoot()._connector.GetPLCstatus() if status is not PlcStatus.Started: - dialog = wx.FileDialog(self, _("Choose a binary file"), os.getcwd(), "", _("bin files (*.bin)|*.bin"), wx.OPEN) + dialog = wx.FileDialog(self, _("Choose a binary file"), os.getcwd(), "", _("bin files (*.bin)|*.bin"), wx.FD_OPEN) if dialog.ShowModal() == wx.ID_OK: filepath = dialog.GetPath() @@ -1896,7 +1896,7 @@ @param event : wx.EVT_BUTTON object """ dialog = wx.FileDialog(self, _("Choose a binary file"), os.getcwd(), "", - _("bin files (*.bin)|*.bin"), wx.OPEN) + _("bin files (*.bin)|*.bin"), wx.FD_OPEN) if dialog.ShowModal() == wx.ID_OK: filepath = dialog.GetPath() diff -r fdd4b171ac6c -r b46af5b80c7d svghmi/svghmi.py --- a/svghmi/svghmi.py Sun Jul 31 12:27:47 2022 +0200 +++ b/svghmi/svghmi.py Mon Aug 08 18:07:23 2022 +0200 @@ -721,7 +721,7 @@ return res def _ImportSVG(self): - dialog = wx.FileDialog(self.GetCTRoot().AppFrame, _("Choose a SVG file"), os.getcwd(), "", _("SVG files (*.svg)|*.svg|All files|*.*"), wx.OPEN) + dialog = wx.FileDialog(self.GetCTRoot().AppFrame, _("Choose a SVG file"), os.getcwd(), "", _("SVG files (*.svg)|*.svg|All files|*.*"), wx.FD_OPEN) if dialog.ShowModal() == wx.ID_OK: svgpath = dialog.GetPath() if os.path.isfile(svgpath): @@ -765,7 +765,7 @@ def _EditPO(self): """ Select a specific translation and edit it with POEdit """ project_path = self.CTNPath() - dialog = wx.FileDialog(self.GetCTRoot().AppFrame, _("Choose a PO file"), project_path, "", _("PO files (*.po)|*.po"), wx.OPEN) + dialog = wx.FileDialog(self.GetCTRoot().AppFrame, _("Choose a PO file"), project_path, "", _("PO files (*.po)|*.po"), wx.FD_OPEN) if dialog.ShowModal() == wx.ID_OK: POFile = dialog.GetPath() if os.path.isfile(POFile): @@ -791,7 +791,7 @@ _("Choose a font"), os.path.expanduser("~"), "", - _("Font files (*.ttf;*.otf;*.woff;*.woff2)|*.ttf;*.otf;*.woff;*.woff2"), wx.OPEN) + _("Font files (*.ttf;*.otf;*.woff;*.woff2)|*.ttf;*.otf;*.woff;*.woff2"), wx.FD_OPEN) if dialog.ShowModal() == wx.ID_OK: fontfile = dialog.GetPath() @@ -828,7 +828,7 @@ _("Choose a font to remove"), fontdir, "", - _("Font files (*.ttf;*.otf;*.woff;*.woff2)|*.ttf;*.otf;*.woff;*.woff2"), wx.OPEN) + _("Font files (*.ttf;*.otf;*.woff;*.woff2)|*.ttf;*.otf;*.woff;*.woff2"), wx.FD_OPEN) if dialog.ShowModal() == wx.ID_OK: fontfile = dialog.GetPath() if os.path.isfile(fontfile):