Fixed: #902 tool projects build failed issue (patch provided by kuo)

This commit is contained in:
kervala 2010-05-14 18:38:48 +02:00
parent 5b8661094c
commit 0acc98b105
4 changed files with 7 additions and 7 deletions

View file

@ -303,7 +303,7 @@ void CGeorgesEditView::updateTab ()
}
// Should be found
nlassert (tabSelected!=-1)
nlassert (tabSelected!=-1);
TabCtrl.SetCurSel (tabSelected);
UpdateData (FALSE);

View file

@ -1708,7 +1708,7 @@ bool CActionRotate::redo ()
bool CActionRotate::getText (string &result)
{
result = toString ("Rotate %.2f°", 180*_Angle/Pi);
result = toString ("Rotate %.2f degrees", 180*_Angle/Pi);
return true;
}

View file

@ -2170,7 +2170,7 @@ void CDisplay::OnLButtonDown (UINT nFlags, CPoint point)
if ((CNELU::Driver == NULL)||(_MainFrame == NULL)) return;
nlassert (!_MouseLeftDown)
nlassert (!_MouseLeftDown);
_MouseLeftDown = true;
// Mouse capture On !

View file

@ -1839,7 +1839,7 @@ void CMainFrame::OnProjectAddPrimitive()
if (!getDocument()->isPrimitiveLoaded(path))
getDocument ()->addModification (new CActionLoadPrimitive (path.c_str()));
else
infoMessage("Primitive déjà présente : %s", path.c_str());
infoMessage("Primitive already existing: %s", path.c_str());
}
}
getDocument ()->endModification ();
@ -2616,7 +2616,7 @@ void CMainFrame::buildFilenameVector (const IPrimitive &primitive, std::vector<s
void CMainFrame::OnOpenFile (UINT nID)
{
// Single selection
nlassert (Selection.size () == 1)
nlassert (Selection.size () == 1);
// Good id
nID -= ID_EDIT_OPEN_FILE_BEGIN;
@ -4278,7 +4278,7 @@ void CMainFrame::OnDropFiles(HDROP hDropInfo)
if (!getDocument()->isPrimitiveLoaded(path))
getDocument ()->addModification (new CActionLoadPrimitive (path.c_str()));
else
infoMessage("Primitive déjà présente : %s", path.c_str());
infoMessage("Primitive already existing: %s", path.c_str());
getDocument()->endModification ();
@ -4291,7 +4291,7 @@ void CMainFrame::OnDropFiles(HDROP hDropInfo)
// Can be extended to support more file types
else
{
errorMessage("Fichier non supporté: %s", pFilename);
errorMessage("File not supported? %s", pFilename);
}
}
}