Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/plugin/AdblockPlusClient.cpp

Issue 11557015: Tooltip notification. Check for update fixes. (Closed)
Patch Set: Addressing comments Created Sept. 16, 2013, 1:49 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/plugin/AdblockPlusClient.cpp
===================================================================
--- a/src/plugin/AdblockPlusClient.cpp
+++ b/src/plugin/AdblockPlusClient.cpp
@@ -441,9 +441,11 @@
}
}
-void CAdblockPlusClient::CheckForUpdates()
+void CAdblockPlusClient::CheckForUpdates(HWND callbackWindow)
{
- CallEngine(Communication::PROC_CHECK_FOR_UPDATES);
+ Communication::OutputBuffer request;
+ request << Communication::PROC_CHECK_FOR_UPDATES << (int32_t)(callbackWindow);
+ CallEngine(request);
}
std::wstring CAdblockPlusClient::GetDocumentationLink()

Powered by Google App Engine
This is Rietveld