summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2014-06-25 04:17:14 +0000
committerDart Raiden <wowemuh@gmail.com>2014-06-25 04:17:14 +0000
commit2bb1470f306ab770edfbd2c8cc3b679f3c4b4ac8 (patch)
treec1cec622f25d86305edbe64c5cc2d50957718387
parentf6b47b62755c42b480a115b96ef1c99122cfa43b (diff)
spelling corrections
git-svn-id: http://svn.miranda-ng.org/main/trunk@9574 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--include/delphi/m_clist.inc2
-rw-r--r--include/m_clist.h2
-rw-r--r--plugins/PasteIt/src/PasteToWeb.cpp2
-rw-r--r--plugins/Popup/src/notifications.h4
-rw-r--r--protocols/Xfire/src/recvdidpacket.cpp2
5 files changed, 6 insertions, 6 deletions
diff --git a/include/delphi/m_clist.inc b/include/delphi/m_clist.inc
index bf14ee784c..1268a52c02 100644
--- a/include/delphi/m_clist.inc
+++ b/include/delphi/m_clist.inc
@@ -377,7 +377,7 @@ const
window message handle and practice to process it via calling service
in form: CallService(MS_CLIST_MENUPROCESSCOMMAND, MAKEWPARAM(LOWORD(wParam),
MPCF_CONTACTMENU),(LPARAM) hContact))
- to ensure that WM_COMMAND was realy from clist menu not from other menu
+ to ensure that WM_COMMAND was really from clist menu not from other menu
it is reserved range of menu ids from CLISTMENUIDMIN to CLISTMENUIDMAX
the menu items with ids outside from such range will not be processed by service.
Moreover if you process WM_COMMAND youself and your window contains self menu
diff --git a/include/m_clist.h b/include/m_clist.h
index 20025b58dc..6b4b7cbf64 100644
--- a/include/m_clist.h
+++ b/include/m_clist.h
@@ -408,7 +408,7 @@ typedef struct {
// Due to it is generic practice to handle menu command via WM_COMMAND
// window message handle and practice to process it via calling service
// in form: CallService(MS_CLIST_MENUPROCESSCOMMAND, MAKEWPARAM(LOWORD(wParam), MPCF_CONTACTMENU), (LPARAM) hContact))
-// to ensure that WM_COMMAND was realy from clist menu not from other menu
+// to ensure that WM_COMMAND was really from clist menu not from other menu
// it is reserved range of menu ids from CLISTMENUIDMIN to CLISTMENUIDMAX
// the menu items with ids outside from such range will not be processed by service.
// Moreover if you process WM_COMMAND youself and your window contains self menu
diff --git a/plugins/PasteIt/src/PasteToWeb.cpp b/plugins/PasteIt/src/PasteToWeb.cpp
index 42e42e4583..16ab8b45a0 100644
--- a/plugins/PasteIt/src/PasteToWeb.cpp
+++ b/plugins/PasteIt/src/PasteToWeb.cpp
@@ -386,7 +386,7 @@ void PasteToWeb::FromFile(std::wstring file)
{
if(fileSize.QuadPart > 512000LL)
{
- mir_sntprintf(bufErr, 1024, TranslateT("File size is %d KB, do you realy want to paste such a large file?"), fileSize.LowPart / 1024);
+ mir_sntprintf(bufErr, 1024, TranslateT("File size is %d KB, do you really want to paste such a large file?"), fileSize.LowPart / 1024);
if(MessageBox(NULL, bufErr, TranslateT("Are You sure?"), MB_YESNO | MB_ICONQUESTION) != IDYES)
{
CloseHandle(hFile);
diff --git a/plugins/Popup/src/notifications.h b/plugins/Popup/src/notifications.h
index 98aae6e144..eb8a8e094f 100644
--- a/plugins/Popup/src/notifications.h
+++ b/plugins/Popup/src/notifications.h
@@ -40,8 +40,8 @@ struct POPUPTREEDATA
int timeoutValue;
char leftAction[MAXMODULELABELLENGTH];
char rightAction[MAXMODULELABELLENGTH];
- COLORREF colorBack; //realy needet ??
- COLORREF colorText; //realy needet ??
+ COLORREF colorBack; //really needed ??
+ COLORREF colorText; //really needed ??
};
extern LIST<POPUPTREEDATA> gTreeData;
diff --git a/protocols/Xfire/src/recvdidpacket.cpp b/protocols/Xfire/src/recvdidpacket.cpp
index ee0925c724..3848074dd3 100644
--- a/protocols/Xfire/src/recvdidpacket.cpp
+++ b/protocols/Xfire/src/recvdidpacket.cpp
@@ -29,7 +29,7 @@
namespace xfirelib {
void RecvDidPacket::parseContent(char *buf, int length, int numberOfAtts) {
- XDEBUG(("This is the useles DID packet, its realy useless\n"));
+ XDEBUG(("This is the useless DID packet, its really useless\n"));
}
};