Jelajahi Sumber

wxGUI/vdigit: typo
(merge from relbr64, https://trac.osgeo.org/grass/changeset/36509)


git-svn-id: https://svn.osgeo.org/grass/grass/trunk@36511 15284696-431f-4ddb-bdfa-cd5b030d7da7

Martin Landa 16 tahun lalu
induk
melakukan
ea13b19061
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      gui/wxpython/vdigit/line.cpp

+ 1 - 1
gui/wxpython/vdigit/line.cpp

@@ -61,7 +61,7 @@ int Digit::AddLine(int type, std::vector<double> coords, int layer, int cat,
     npoints = coords.size() / (Vect_is_3d(display->mapInfo) ? 3 : 2);
     if (coords.size() != npoints * (Vect_is_3d(display->mapInfo) ? 3 : 2)) {
 	wxString msg;
-	msg.Printf(_("Incorrent number of points (%d)"), coords.size());
+	msg.Printf(_("Incorrect number of points (%d)"), coords.size());
 	wxMessageDialog dlg(display->parentWin, msg,
 			    display->msgCaption, wxOK | wxICON_ERROR | wxCENTRE);
 	dlg.ShowModal();