mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 18:49:03 -04:00
rollback r11326, we're going to make vc9 the officially supported windows build methods since the few of us doing win dev can't keep up maintaining the others.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11327 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
c275233c7c
commit
15b51c2ecc
@ -201,7 +201,7 @@ class CoreExport CommandParser : public classbase
|
||||
* @param dest The output string, it is safe to pass source and dest as the same variable only for translation type TR_TEXT.
|
||||
* @return returns the number of substitutions made. Will always be 0 or 1 for TR_TEXT and 0..n for other types.
|
||||
*/
|
||||
int TranslateUIDsOnce(TranslateType to, const std::string &source, std::string &dest);
|
||||
int TranslateUIDs(TranslateType to, const std::string &source, std::string &dest);
|
||||
|
||||
int TranslateUIDs(const std::deque<TranslateType> to, const std::deque<std::string> &source, std::string &dest);
|
||||
};
|
||||
|
@ -1703,7 +1703,7 @@ class CoreExport ModuleManager : public classbase
|
||||
* SetPriority method for this, where you may specify other modules to
|
||||
* be prioritized against.
|
||||
*/
|
||||
bool SetModulePriority(Module* mod, Priority s);
|
||||
bool SetPriority(Module* mod, Priority s);
|
||||
|
||||
/** Attach an event to a module.
|
||||
* You may later detatch the event with ModuleManager::Detach().
|
||||
|
@ -650,7 +650,7 @@ int CommandParser::TranslateUIDs(const std::deque<TranslateType> to, const std::
|
||||
return translations;
|
||||
}
|
||||
|
||||
int CommandParser::TranslateUIDsOnce(TranslateType to, const std::string &source, std::string &dest)
|
||||
int CommandParser::TranslateUIDs(TranslateType to, const std::string &source, std::string &dest)
|
||||
{
|
||||
User* user = NULL;
|
||||
std::string item;
|
||||
|
@ -238,7 +238,7 @@ void ModuleManager::DetachAll(Module* mod)
|
||||
Detach((Implementation)n, mod);
|
||||
}
|
||||
|
||||
bool ModuleManager::SetModulePriority(Module* mod, Priority s)
|
||||
bool ModuleManager::SetPriority(Module* mod, Priority s)
|
||||
{
|
||||
for (size_t n = I_BEGIN + 1; n != I_END; ++n)
|
||||
SetPriority(mod, (Implementation)n, s);
|
||||
|
@ -946,7 +946,7 @@ Version ModuleSpanningTree::GetVersion()
|
||||
*/
|
||||
void ModuleSpanningTree::Prioritize()
|
||||
{
|
||||
ServerInstance->Modules->SetModulePriority(this, PRIORITY_LAST);
|
||||
ServerInstance->Modules->SetPriority(this, PRIORITY_LAST);
|
||||
}
|
||||
|
||||
MODULE_INIT(ModuleSpanningTree)
|
||||
|
@ -68,7 +68,7 @@ void ModuleSpanningTree::OnPostCommand(const std::string &command, const std::ve
|
||||
}
|
||||
else
|
||||
{
|
||||
ServerInstance->Parser->TranslateUIDsOnce(translate_to, parameters[j], target);
|
||||
ServerInstance->Parser->TranslateUIDs(translate_to, parameters[j], target);
|
||||
}
|
||||
|
||||
if (j == (parameters.size() - 1))
|
||||
|
@ -3947,7 +3947,7 @@
|
||||
RelativePath="..\src\modules\m_nationalchars.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Site Release|Win32"
|
||||
Name="Release|Win32"
|
||||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
|
Loading…
x
Reference in New Issue
Block a user