summaryrefslogtreecommitdiff
path: root/plugins/IEHistory
AgeCommit message (Collapse)Author
2014-12-14GetWindowText(GetDlgItem(...)) -> GetDlgItemText(...)Rozhuk Ivan
git-svn-id: http://svn.miranda-ng.org/main/trunk@11390 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-12-14SendMessage(... WM_GETTEXT ...) -> GetWindowText(...)Rozhuk Ivan
git-svn-id: http://svn.miranda-ng.org/main/trunk@11389 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-12-14SendDlgItemMessage(...., WM_SETTEXT...) -> SetDlgItemText(...)Rozhuk Ivan
git-svn-id: http://svn.miranda-ng.org/main/trunk@11388 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-12-14SendDlgItemMessage(...BM_SETCHECK ...) -> CheckDlgButton(...)Rozhuk Ivan
SendDlgItemMessage(...BM_GETCHECK ...) -> IsDlgButtonChecked(...) constants fix for CheckDlgButton() git-svn-id: http://svn.miranda-ng.org/main/trunk@11387 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-12-13SendMessage(GetDlgItem -> SendDlgItemMessageRozhuk Ivan
git-svn-id: http://svn.miranda-ng.org/main/trunk@11383 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-12-13memmove -> memcpy in some cases, review reqRozhuk Ivan
git-svn-id: http://svn.miranda-ng.org/main/trunk@11367 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-11-30Multiple fixes buff size for GetText and SetText.Rozhuk Ivan
git-svn-id: http://svn.miranda-ng.org/main/trunk@11165 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-22IEHistory:René Schümann
partially revert of r10283 : either do it right, or don't do it at all. capitalization was chosen wisely because it's already used by Miranda and thus doesn't bloat the language files. I also chose to use the very same naming as History++ did. It's our responsibility as developers to not bloat language files. They are already bloated enough, don't extend it even further. (and I wish someone would write a "string search program" to find similar already translated/used strings :P) You may decapitialize it again, but then also do it for History++ and Import. (we could actually different dialog name, as Import uses the same spelling, but as said, History++ doesn't. The menu what so ever must be upper case. Or change it in History++ as well) git-svn-id: http://svn.miranda-ng.org/main/trunk@10305 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-22IEHistory resource cosmetics: final touchRMN
git-svn-id: http://svn.miranda-ng.org/main/trunk@10298 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-22one more correctionDart Raiden
git-svn-id: http://svn.miranda-ng.org/main/trunk@10297 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-22IEHistory: translation fixDart Raiden
git-svn-id: http://svn.miranda-ng.org/main/trunk@10292 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-22IEHistory: decapitalization, descriptionDart Raiden
git-svn-id: http://svn.miranda-ng.org/main/trunk@10283 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-22IEHistory: removed unneeded punctuationDart Raiden
git-svn-id: http://svn.miranda-ng.org/main/trunk@10281 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-22git-svn-id: http://svn.miranda-ng.org/main/trunk@10279 ↵Vadim Dashevskiy
1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-21IEHistory: v0.0.1.7René Schümann
* properly destroy hOpenWindowsList (version bump was also for previous changes) git-svn-id: http://svn.miranda-ng.org/main/trunk@10273 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-21IEHistory:René Schümann
- removed OnModulesLoaded, currently not needed. * moved and fixed context menu code from OnModulesLoaded to Load(), now with Unicode support and only 1 translate^^ git-svn-id: http://svn.miranda-ng.org/main/trunk@10271 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-21first version that compilesGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@10260 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-21IEHistory:René Schümann
* oops... forgot to change project name... was still "SendSS", that's what I've used as a base for project files. git-svn-id: http://svn.miranda-ng.org/main/trunk@10255 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-21IEHistory: v0.0.1.6René Schümann
* improved IDC_IEVIEW_PLACEHOLDER control - removed border around IEView control to fit entire window * improved name of system history dialog (IEView still doesn't show all events.. so it's mostly useless) + added ability to focus and bring to top old history window if it were already open git-svn-id: http://svn.miranda-ng.org/main/trunk@10254 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-21IEHistory: Miranda NG compatibility.René Schümann
- removed mirandaMem * GetWindowLong => GetWindowLongPtr * SetWindowLong => SetWindowLongPtr * DLGPROC returning int/BOOL => INT_PTR * CallService(MS_DB_EVENT_*) => db_event_* * DBGetContactSetting* => db_get_* * DBWriteContactSetting => db_set_* * contact HANDLE => MCONTACT * CallService(MS_CLIST_ADD*MENUITEM,...) => Menu_Add*MenuItem() * improved GetContactName() - removed some #pragma warning's * version bump to 0.0.1.5 git-svn-id: http://svn.miranda-ng.org/main/trunk@10253 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-21IEHistory:René Schümann
prepared file structure (project file coming with NG compatibility update) git-svn-id: http://svn.miranda-ng.org/main/trunk@10252 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-21IEHistory:René Schümann
added original sources of 0.0.1.4 git-svn-id: http://svn.miranda-ng.org/main/trunk@10251 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c