- Disabled useless "deprecated" warnings when using stdc functions

- Added Tremulous support
- Fixed wildpointer bug in texwindow.cpp
- Updated credits
- Updated installerfiles
- Fixed some warnings


git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@150 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
namespace
2007-03-04 20:54:30 +00:00
parent f82b1ff719
commit 8048d70866
43 changed files with 234 additions and 80 deletions

View File

@@ -251,7 +251,7 @@ inline char* string_to_lowercase(char* string)
{
for(char* p = string; *p != '\0'; ++p)
{
*p = std::tolower(*p);
*p = (char)std::tolower(*p);
}
return string;
}
@@ -262,7 +262,7 @@ inline char* string_to_uppercase(char* string)
{
for(char* p = string; *p != '\0'; ++p)
{
*p = std::toupper(*p);
*p = (char)std::toupper(*p);
}
return string;
}