Skip to content

Commit

Permalink
rollback r11326, we're going to make vc9 the officially supported win…
Browse files Browse the repository at this point in the history
…dows 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
  • Loading branch information
peavey committed Apr 23, 2009
1 parent c275233 commit 15b51c2
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion include/command_parse.h
Expand Up @@ -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);
};
Expand Down
2 changes: 1 addition & 1 deletion include/modules.h
Expand Up @@ -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().
Expand Down
2 changes: 1 addition & 1 deletion src/command_parse.cpp
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/modules.cpp
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/modules/m_spanningtree/main.cpp
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion src/modules/m_spanningtree/postcommand.cpp
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion win/inspircdVC80.vcproj
Expand Up @@ -3947,7 +3947,7 @@
RelativePath="..\src\modules\m_nationalchars.cpp"
>
<FileConfiguration
Name="Site Release|Win32"
Name="Release|Win32"
ExcludedFromBuild="true"
>
<Tool
Expand Down

0 comments on commit 15b51c2

Please sign in to comment.