Commit b1c9c542 authored by jean-pierre charras's avatar jean-pierre charras
Browse files

Fix incorrect titles in SVG export dialog

parent 9e096061
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ DIALOG_SVG_PRINT_base::DIALOG_SVG_PRINT_base( wxWindow* parent, wxWindowID id, c
	
	wxString m_rbFileOptChoices[] = { _("One file per layer"), _("All in one file") };
	int m_rbFileOptNChoices = sizeof( m_rbFileOptChoices ) / sizeof( wxString );
	m_rbFileOpt = new wxRadioBox( this, wxID_ANY, _("wxRadioBox"), wxDefaultPosition, wxDefaultSize, m_rbFileOptNChoices, m_rbFileOptChoices, 1, wxRA_SPECIFY_COLS );
	m_rbFileOpt = new wxRadioBox( this, wxID_ANY, _("File option:"), wxDefaultPosition, wxDefaultSize, m_rbFileOptNChoices, m_rbFileOptChoices, 1, wxRA_SPECIFY_COLS );
	m_rbFileOpt->SetSelection( 0 );
	bButtonsSizer->Add( m_rbFileOpt, 0, wxALL, 5 );
	
+2 −2
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@
            <property name="size">507,420</property>
            <property name="style">wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER</property>
            <property name="subclass"></property>
            <property name="title">Create SVG file</property>
            <property name="title">Export SVG file</property>
            <property name="tooltip"></property>
            <property name="window_extra_style"></property>
            <property name="window_name"></property>
@@ -728,7 +728,7 @@
                                        <property name="gripper">0</property>
                                        <property name="hidden">0</property>
                                        <property name="id">wxID_ANY</property>
                                        <property name="label">wxRadioBox</property>
                                        <property name="label">File option:</property>
                                        <property name="majorDimension">1</property>
                                        <property name="max_size"></property>
                                        <property name="maximize_button">0</property>
+1 −1
Original line number Diff line number Diff line
@@ -64,7 +64,7 @@ class DIALOG_SVG_PRINT_base : public wxDialog
	
	public:
		
		DIALOG_SVG_PRINT_base( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Create SVG file"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 507,420 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER ); 
		DIALOG_SVG_PRINT_base( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Export SVG file"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 507,420 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER ); 
		~DIALOG_SVG_PRINT_base();
	
};