Changes made due to renaming of R4xTranslator to FuncTranslator

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2410 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matthew Wilber 2003-01-11 13:56:45 +00:00
parent 27aa9660b3
commit 755ac1744b
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ UsePublicHeaders translation ;
SharedLibrary translation :
BitmapStream.cpp
R4xTranslator.cpp
FuncTranslator.cpp
TranslationUtils.cpp
Translator.cpp
TranslatorRoster.cpp

View File

@ -1424,8 +1424,8 @@ BTranslatorRoster::LoadTranslator(const char *path)
return err;
// add this translator to the list
BR4xTranslator *pR4xTran = new BR4xTranslator(&trand);
AddTranslatorToList(pR4xTran, path, image, false);
BFuncTranslator *pFuncTran = new BFuncTranslator(&trand);
AddTranslatorToList(pFuncTran, path, image, false);
// do not call Acquire() on ptran because I want it to be
// deleted the first time Release() is called on it.