summaryrefslogtreecommitdiff
path: root/plugins/!NotAdopted
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-08-02 21:21:45 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-08-02 21:21:45 +0000
commitd2946eb5bb3692806bb67e6e8a8d981f0e599850 (patch)
tree55dc7a15199c69824aa1a4550a326369c9a372f5 /plugins/!NotAdopted
parent53551a6153e66fff4b35eb92366b0d1be906d624 (diff)
removal of the rest of __DATE__ and __TIME__
git-svn-id: http://svn.miranda-ng.org/main/trunk@1332 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/!NotAdopted')
-rw-r--r--plugins/!NotAdopted/SMS/main.cpp4
-rw-r--r--plugins/!NotAdopted/SmartAutoAway/saa.cpp12
-rw-r--r--plugins/!NotAdopted/SmartAutoAway/saani.c12
-rw-r--r--plugins/!NotAdopted/Tlen/tlen.c3
-rw-r--r--plugins/!NotAdopted/Tlen/tlen_czaty/mucc.cpp3
5 files changed, 14 insertions, 20 deletions
diff --git a/plugins/!NotAdopted/SMS/main.cpp b/plugins/!NotAdopted/SMS/main.cpp
index 64ff1a92f1..c056cbbc30 100644
--- a/plugins/!NotAdopted/SMS/main.cpp
+++ b/plugins/!NotAdopted/SMS/main.cpp
@@ -151,7 +151,7 @@ PLUGININFOEX pluginInfoEx={
sizeof(PLUGININFOEX),
PROTOCOL_DISPLAY_NAME_ORIG" (Unicode)",
PLUGIN_VERSION_DWORD,
- "Send SMS text messages to mobile phones through the IM networks ("__DATE__" "__TIME__")",
+ "Send SMS text messages to mobile phones through the IM networks",
"Richard Hughes, Improved by Ariel Shulman, rewritten by Rozhuk Ivan",
"Rozhuk_I@mail.ru",
"© 2001-2 Richard Hughes, 2003 Ariel Shulman, 2007-2009 Rozhuk Ivan (Rozhuk_I@mail.ru)",
@@ -194,7 +194,7 @@ return(TRUE);
__declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
- if (mirandaVersion<MIN_MIR_VER_VERSION_DWORD)
+ if (mirandaVersion<MIN_MIR_VER_VERSION_DWORD)
{
MessageBox(NULL,TEXT("Pleace, update your Miranda IM, SMS will not load with this version."),NULL,(MB_OK|MB_ICONERROR));
return(NULL);
diff --git a/plugins/!NotAdopted/SmartAutoAway/saa.cpp b/plugins/!NotAdopted/SmartAutoAway/saa.cpp
index a36e5b5981..0bcc701c0d 100644
--- a/plugins/!NotAdopted/SmartAutoAway/saa.cpp
+++ b/plugins/!NotAdopted/SmartAutoAway/saa.cpp
@@ -2,8 +2,8 @@
Miranda IM: the free IM client for Microsoft* Windows*
-Copyright 2000-2006 Miranda ICQ/IM project,
-all portions of this codebase are copyrighted to the people
+Copyright 2000-2006 Miranda ICQ/IM project,
+all portions of this codebase are copyrighted to the people
listed in contributors.txt.
This program is free software; you can redistribute it and/or
@@ -81,7 +81,7 @@ extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfo(DWORD mirandaVe
mirandaVersion&0xFF
);
};
- sprintf(description,"%s\r\n[Build %s %s]",description, __DATE__,__TIME__);
+
pluginInfo.description = description;
if ( mirandaVersion < PLUGIN_MAKE_VERSION( 0,7,0,17 )) pluginInfo.cbSize = sizeof( PLUGININFO );
return &pluginInfo;
@@ -92,7 +92,7 @@ extern "C" __declspec(dllexport) PLUGININFOEX * MirandaPluginInfoEx(DWORD mirand
isNewMiranda=true;
return MirandaPluginInfo(mirandaVersion);
}
-
+
extern "C" __declspec(dllexport) const MUUID interfaces[] = {MIID_AUTOAWAY, MIID_IDLE, MIID_LAST};
extern "C" __declspec(dllexport) const MUUID * MirandaPluginInterfaces(void)
{
@@ -104,7 +104,7 @@ extern "C" int __declspec(dllexport) Load(PLUGINLINK * link)
pluginLink = link;
LoadAutoAwayModule();
hUxTheme = GetModuleHandle(_T("uxtheme.dll"));
- if(hUxTheme)
+ if(hUxTheme)
enableThemeDialogTexture = (BOOL (WINAPI *)(HANDLE, DWORD))GetProcAddress(hUxTheme, "EnableThemeDialogTexture");
return 0;
}
@@ -126,5 +126,3 @@ extern "C" int __declspec(dllexport) Unload(void)
return 1; //if 1 we dont want to shutdown because we have hooked ME_SYSTEM_SHUTDOWN
}
-
-
diff --git a/plugins/!NotAdopted/SmartAutoAway/saani.c b/plugins/!NotAdopted/SmartAutoAway/saani.c
index 088a60e22e..605a3fab54 100644
--- a/plugins/!NotAdopted/SmartAutoAway/saani.c
+++ b/plugins/!NotAdopted/SmartAutoAway/saani.c
@@ -2,8 +2,8 @@
Miranda IM: the free IM client for Microsoft* Windows*
-Copyright 2000-2006 Miranda ICQ/IM project,
-all portions of this codebase are copyrighted to the people
+Copyright 2000-2006 Miranda ICQ/IM project,
+all portions of this codebase are copyrighted to the people
listed in contributors.txt.
This program is free software; you can redistribute it and/or
@@ -24,7 +24,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//#ifdef VCL_VC60
#include "AggressiveOptimize.h"
//#endif
-#include <windows.h>
+#include <windows.h>
#include <newpluginapi.h>
PLUGININFOEX pluginInfo = {
@@ -55,9 +55,8 @@ __declspec(dllexport) PLUGININFOEX *MirandaPluginInfo(DWORD mirandaVersion)
mirandaVersion&0xFF
);
}
- sprintf(description,"%s\r\n[Build %s %s]",description, __DATE__,__TIME__);
pluginInfo.description = description;
- return &pluginInfo;
+ return &pluginInfo;
}
__declspec(dllexport) PLUGININFOEX * MirandaPluginInfoEx(DWORD mirandaVersion)
{
@@ -65,7 +64,7 @@ __declspec(dllexport) PLUGININFOEX * MirandaPluginInfoEx(DWORD mirandaVersion)
pluginInfo.cbSize = sizeof( PLUGININFOEX );
return MirandaPluginInfo(mirandaVersion);
}
-
+
extern "C" __declspec(dllexport) const MUUID interfaces[] = {MIID_IDLE, MIID_LAST};
__declspec(dllexport) const MUUID * MirandaPluginInterfaces(void)
{
@@ -82,4 +81,3 @@ int __declspec(dllexport) Unload(void)
// AutoAwayShutdown(0,0);
return 0; //if 1 we dont want to shutdown because we have hooked ME_SYSTEM_SHUTDOWN
}
-
diff --git a/plugins/!NotAdopted/Tlen/tlen.c b/plugins/!NotAdopted/Tlen/tlen.c
index 2f8d860a64..8e062a54b0 100644
--- a/plugins/!NotAdopted/Tlen/tlen.c
+++ b/plugins/!NotAdopted/Tlen/tlen.c
@@ -58,7 +58,7 @@ PLUGININFOEX pluginInfoEx = {
"Tlen Protocol",
#endif
PLUGIN_MAKE_VERSION(TLEN_MAJOR_VERSION,TLEN_MINOR_VERSION,TLEN_RELEASE_NUM,TLEN_BUILD_NUM),
- "Tlen protocol plugin for Miranda IM (version: "TLEN_VERSION_STRING" ; compiled: "__DATE__" "__TIME__")",
+ "Tlen protocol plugin for Miranda IM (version: " TLEN_VERSION_STRING ")",
"Santithorn Bunchua, Adam Strzelecki, Piotr Piastucki",
"the_leech@users.berlios.de",
"(c) 2002-2012 Santithorn Bunchua, Piotr Piastucki",
@@ -633,4 +633,3 @@ int __declspec(dllexport) Unload(void)
{
return 0;
}
-
diff --git a/plugins/!NotAdopted/Tlen/tlen_czaty/mucc.cpp b/plugins/!NotAdopted/Tlen/tlen_czaty/mucc.cpp
index e5c35c070a..7006437a2f 100644
--- a/plugins/!NotAdopted/Tlen/tlen_czaty/mucc.cpp
+++ b/plugins/!NotAdopted/Tlen/tlen_czaty/mucc.cpp
@@ -47,7 +47,7 @@ PLUGININFOEX pluginInfoEx = {
"Tlen Czaty",
#endif
PLUGIN_MAKE_VERSION(MUCC_MAJOR_VERSION,MUCC_MINOR_VERSION,MUCC_RELEASE_NUM,MUCC_BUILD_NUM),
- "Group chats GUI plugin for Miranda IM (formerly known as mucc.dll) (version: "MUCC_VERSION_STRING" ; compiled: "__DATE__" "__TIME__")",
+ "Group chats GUI plugin for Miranda IM (formerly known as mucc.dll) (version: " MUCC_VERSION_STRING ")",
"Piotr Piastucki",
"the_leech@users.berlios.de",
"(c) 2004-2012 Piotr Piastucki",
@@ -185,4 +185,3 @@ extern "C" int __declspec(dllexport) Unload(void)
{
return 0;
}
-