Type casting warning fixes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28245 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-07-15 06:34:04 +00:00
parent 9d6eda5f3d
commit 5b7ab9385f
5 changed files with 29 additions and 28 deletions

View File

@@ -66,7 +66,7 @@ static inline wxChar* copystring(const wxChar* s)
{ return wxStrcpy(new wxChar[wxStrlen(s) + 1], s); }
#endif
const float versionNo = TEX2RTF_VERSION_NUMBER;
const float versionNo = (float)TEX2RTF_VERSION_NUMBER;
TexChunk *currentMember = NULL;
bool startedSections = false;
@@ -287,8 +287,9 @@ bool MyApp::OnInit()
#ifdef NO_GUI
ShowOptions();
exit(1);
#endif
#else
return false;
#endif
}
}