summaryrefslogtreecommitdiff
path: root/protocols/IRCG
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-07-22 20:44:31 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-07-22 20:44:31 +0000
commit4b7c03000029ae55340bc0d1c4c296de917f9700 (patch)
tree5c458aee0a7d2a04698692b9d0abc9e82d195a66 /protocols/IRCG
parent2afffa0335123e7ceeb94835dc868a4577f5f044 (diff)
links to miranda-im.org removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@1105 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IRCG')
-rw-r--r--protocols/IRCG/commandmonitor.cpp2
-rw-r--r--protocols/IRCG/irc.h4
-rw-r--r--protocols/IRCG/ircproto.cpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/protocols/IRCG/commandmonitor.cpp b/protocols/IRCG/commandmonitor.cpp
index dac26d1349..374396b7c2 100644
--- a/protocols/IRCG/commandmonitor.cpp
+++ b/protocols/IRCG/commandmonitor.cpp
@@ -837,7 +837,7 @@ bool CIrcProto::IsCTCP( const CIrcMessage* pmsg )
// incoming SOURCE
else if (pmsg->m_bIncoming && command == _T("source")) {
- PostIrcMessage( _T("/NOTICE %s \001SOURCE Get Miranda IRC here: http://miranda-im.org/ \001"), pmsg->prefix.sNick.c_str());
+ PostIrcMessage( _T("/NOTICE %s \001SOURCE Get Miranda IRC here: http://nightly.miranda.im/ \001"), pmsg->prefix.sNick.c_str());
TCHAR temp[300];
mir_sntprintf( temp, SIZEOF(temp), TranslateT("CTCP SOURCE requested by %s"), pmsg->prefix.sNick.c_str());
diff --git a/protocols/IRCG/irc.h b/protocols/IRCG/irc.h
index 3c4f10ec4f..fedaef74e3 100644
--- a/protocols/IRCG/irc.h
+++ b/protocols/IRCG/irc.h
@@ -87,8 +87,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define IRC_UM_DISCONNECT "/UMenuDisconnect"
#define IRC_UM_IGNORE "/UMenuIgnore"
-#define STR_QUITMESSAGE "\002Miranda IM!\002 Smaller, Faster, Easier. http://miranda-im.org"
-#define STR_USERINFO "I'm a happy Miranda IM user! Get it here: http://miranda-im.org"
+#define STR_QUITMESSAGE "\002Miranda NG!\002 Smaller, Faster, Easier. http://nightly.miranda.im/"
+#define STR_USERINFO "I'm a happy Miranda NG user! Get it here: http://nightly.miranda.im/"
#define STR_AWAYMESSAGE "I'm away from the computer." // Default away
#define DCCSTRING " (DCC)"
#define SERVERSMODULE "IRC Servers"
diff --git a/protocols/IRCG/ircproto.cpp b/protocols/IRCG/ircproto.cpp
index 6afe5328e7..8c4e539405 100644
--- a/protocols/IRCG/ircproto.cpp
+++ b/protocols/IRCG/ircproto.cpp
@@ -267,7 +267,7 @@ int CIrcProto::OnModulesLoaded( WPARAM, LPARAM )
}
else {
if ( IDYES == MessageBox(0,TranslateT("The IRC protocol depends on another plugin called \'Chat\'\n\nDo you want to download it from the Miranda IM web site now?"),TranslateT("Information"),MB_YESNO|MB_ICONINFORMATION ))
- CallService( MS_UTILS_OPENURL, 1, (LPARAM) "http://www.miranda-im.org/download/");
+ CallService( MS_UTILS_OPENURL, 1, (LPARAM) "http://nightly.miranda.im/");
}
TCHAR szTemp[MAX_PATH];