Commit 7c171870 authored by jean-pierre charras's avatar jean-pierre charras

Pcbnew: Fix typo in 2 filenames. Add comments in ratsnest.cpp.

Fix bug 887202.
parent 936d831b
...@@ -689,7 +689,7 @@ void EDA_BASE_FRAME::ImportHotkeyConfigFromFile( struct EDA_HOTKEY_CONFIG* aDesc ...@@ -689,7 +689,7 @@ void EDA_BASE_FRAME::ImportHotkeyConfigFromFile( struct EDA_HOTKEY_CONFIG* aDesc
mask, mask,
this, this,
wxFD_OPEN, wxFD_OPEN,
TRUE ); true );
if( filename.IsEmpty() ) if( filename.IsEmpty() )
return; return;
...@@ -710,14 +710,14 @@ void EDA_BASE_FRAME::ExportHotkeyConfigToFile( struct EDA_HOTKEY_CONFIG* aDescLi ...@@ -710,14 +710,14 @@ void EDA_BASE_FRAME::ExportHotkeyConfigToFile( struct EDA_HOTKEY_CONFIG* aDescLi
wxString path = wxGetCwd(); wxString path = wxGetCwd();
wxString filename; wxString filename;
filename = EDA_FileSelector( _( "Read Hotkey Configuration File:" ), filename = EDA_FileSelector( _( "Write Hotkey Configuration File:" ),
path, path,
filename, filename,
ext, ext,
mask, mask,
this, this,
wxFD_OPEN, wxFD_OPEN | wxFD_SAVE,
TRUE ); true );
if( filename.IsEmpty() ) if( filename.IsEmpty() )
return; return;
......
...@@ -132,7 +132,7 @@ set(PCBNEW_SRCS ...@@ -132,7 +132,7 @@ set(PCBNEW_SRCS
magnetic_tracks_functions.cpp magnetic_tracks_functions.cpp
menubar_modedit.cpp menubar_modedit.cpp
menubar_pcbframe.cpp menubar_pcbframe.cpp
minumun_spanning_tree.cpp minimun_spanning_tree.cpp
mirepcb.cpp mirepcb.cpp
modedit.cpp modedit.cpp
modedit_onclick.cpp modedit_onclick.cpp
......
/** /**
* @file minumun_spanning_tree.cpp * @file minimun_spanning_tree.cpp
*/ */
/* /*
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#include <limits.h> #include <limits.h>
#include "minumun_spanning_tree.h" #include "minimun_spanning_tree.h"
#include "class_pad.h" #include "class_pad.h"
/* /*
......
/** /**
* @file minumun_spanning_tree.h * @file minimun_spanning_tree.h
*/ */
#include <vector> #include <vector>
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment