summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-01-17 10:40:57 +0000
committerRobert Pösel <robyer@seznam.cz>2013-01-17 10:40:57 +0000
commitd856ff89393e9bbef394c4c88b1250ef2e5d369d (patch)
treef96a6acc80b6344edf1fffa739002fc3c4b14a19
parent3c6aaaa49c1eac0bee54a02fc3e22b017f8288b2 (diff)
NG-ized few old IM relics.
git-svn-id: http://svn.miranda-ng.org/main/trunk@3129 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/AutoShutdown/src/shutdownsvc.cpp2
-rw-r--r--plugins/ClientChangeNotify/src/ClientChangeNotify.cpp2
-rw-r--r--plugins/Clist_blind/src/init.cpp2
-rwxr-xr-xplugins/New_GPG/src/utilities.cpp2
-rw-r--r--protocols/Omegle/src/main.cpp2
-rw-r--r--protocols/Twitter/src/twitter.cpp2
-rw-r--r--protocols/Twitter/src/utility.cpp2
7 files changed, 7 insertions, 7 deletions
diff --git a/plugins/AutoShutdown/src/shutdownsvc.cpp b/plugins/AutoShutdown/src/shutdownsvc.cpp
index c8f524e874..5361f636f2 100644
--- a/plugins/AutoShutdown/src/shutdownsvc.cpp
+++ b/plugins/AutoShutdown/src/shutdownsvc.cpp
@@ -522,7 +522,7 @@ INT_PTR ServiceGetTypeDescription(WPARAM wParam,LPARAM lParam)
_T("Lock workstation"),_T("Hang up dialup connections"),_T("Close Miranda NG"),
_T("Set Miranda NG offline"),_T("Log off user"),_T("Restart computer"),_T("Shutdown computer"),
_T("Standby mode"),_T("Hibernate mode"),_T("Lock workstation"),_T("Hang up dialup connections")};
- const TCHAR *apszLong[]={_T("Sets all Miranda NG protocols to offline and closes Miranda IM."),
+ const TCHAR *apszLong[]={_T("Sets all Miranda NG protocols to offline and closes Miranda NG."),
_T("Sets all Miranda NG protocols to offline."),
_T("Logs the current Windows user off so that another user can log in."),
_T("Shuts down Windows and then restarts Windows."),
diff --git a/plugins/ClientChangeNotify/src/ClientChangeNotify.cpp b/plugins/ClientChangeNotify/src/ClientChangeNotify.cpp
index 1a39c15b82..af093336de 100644
--- a/plugins/ClientChangeNotify/src/ClientChangeNotify.cpp
+++ b/plugins/ClientChangeNotify/src/ClientChangeNotify.cpp
@@ -206,7 +206,7 @@ int ContactSettingChanged(WPARAM wParam, LPARAM lParam)
SHOWPOPUP_DATA sd = {0};
char *szProto = GetContactProto(hContact);
if (g_PreviewOptPage)
- sd.MirVer = _T("Miranda IM 0.6.0.1 (ICQ v0.3.7 alpha)");
+ sd.MirVer = _T("Miranda NG 0.6.0.1 (ICQ v0.3.7 alpha)");
else {
if (!hContact) // exit if hContact == NULL and it's not a popup preview
return 0;
diff --git a/plugins/Clist_blind/src/init.cpp b/plugins/Clist_blind/src/init.cpp
index 82e3f95ebc..e9deccc98c 100644
--- a/plugins/Clist_blind/src/init.cpp
+++ b/plugins/Clist_blind/src/init.cpp
@@ -83,7 +83,7 @@ PLUGININFOEX pluginInfo = {
"A contact list for blind folks.",
"Ricardo Pescuma Domenecci, based on previous work from Miranda IM project",
"",
- "Copyright 2000-2009 Miranda IM project, Ricardo Pescuma Domenecci, 2013 Mitanda NG project, George Hazan",
+ "Copyright 2000-2009 Miranda IM project, Ricardo Pescuma Domenecci, 2013 Miranda NG project, George Hazan",
"http://pescuma.org/miranda/bclist",
UNICODE_AWARE,
// {53E095A3-2695-490a-9DAD-D20479093831}
diff --git a/plugins/New_GPG/src/utilities.cpp b/plugins/New_GPG/src/utilities.cpp
index 7a44ad992f..49061229cc 100755
--- a/plugins/New_GPG/src/utilities.cpp
+++ b/plugins/New_GPG/src/utilities.cpp
@@ -1088,7 +1088,7 @@ void AddHandlers()
// (*p)->setMessageHandler((*p)->getJabberInterface()->Net()->AddMessageHandler((JABBER_HANDLER_FUNC)MessageHandler, JABBER_MESSAGE_TYPE_ANY ,NULL,NULL));
if(bAutoExchange)
{
- (*p)->getJabberInterface()->Net()->RegisterFeature(_T("GPG_Key_Auto_Exchange:0"), _T("Indicates that gpg installed and configured to public key auto exchange (currently implemented in new_gpg Miranda IM plugin)"));
+ (*p)->getJabberInterface()->Net()->RegisterFeature(_T("GPG_Key_Auto_Exchange:0"), _T("Indicates that gpg installed and configured to public key auto exchange (currently implemented in new_gpg plugin for Miranda IM and Miranda NG)"));
(*p)->getJabberInterface()->Net()->AddFeatures(_T("GPG_Key_Auto_Exchange:0\0\0"));
}
}
diff --git a/protocols/Omegle/src/main.cpp b/protocols/Omegle/src/main.cpp
index 6a202d7237..79ecfaaa1e 100644
--- a/protocols/Omegle/src/main.cpp
+++ b/protocols/Omegle/src/main.cpp
@@ -110,7 +110,7 @@ extern "C" int __declspec(dllexport) Load(void)
// Init native User-Agent
{
std::stringstream agent;
- agent << "Miranda IM/";
+ agent << "Miranda NG/";
agent << (( g_mirandaVersion >> 24) & 0xFF);
agent << ".";
agent << (( g_mirandaVersion >> 16) & 0xFF);
diff --git a/protocols/Twitter/src/twitter.cpp b/protocols/Twitter/src/twitter.cpp
index ffba858f7a..78f1582e29 100644
--- a/protocols/Twitter/src/twitter.cpp
+++ b/protocols/Twitter/src/twitter.cpp
@@ -304,7 +304,7 @@ void twitter::set_status(const std::string &text)
{
/* slurp(base_url_+"statuses/update.json",http::post,
"status="+http::url_encode(text)+
- "&source=mirandaim");*/
+ "&source=mirandang");*/
//MessageBox(NULL, UTF8ToWide(text).c_str(), NULL, MB_OK);
std::wstring wTweet = UTF8ToWide(text);
diff --git a/protocols/Twitter/src/utility.cpp b/protocols/Twitter/src/utility.cpp
index f82b2bc64a..515399348f 100644
--- a/protocols/Twitter/src/utility.cpp
+++ b/protocols/Twitter/src/utility.cpp
@@ -82,7 +82,7 @@ http::response mir_twitter::slurp(const std::string &url,http::method meth,
//std::copy(post_data.begin(), post_data.end(), pdata_WSTR.begin());
//postParams[L"status"] = UrlEncode(pdata_WSTR);
- //postParams[L"source"] = L"mirandaim";
+ //postParams[L"source"] = L"mirandang";
pdata_WSTR = BuildQueryString(postParams);