diff options
author | George Hazan <ghazan@miranda.im> | 2018-03-15 14:00:29 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-03-15 15:34:09 +0300 |
commit | 0a03c7c9ccd36ce03bdb9feb4827314e4dd553c6 (patch) | |
tree | 2830a87e15bd5696ae32357f3f4d750a7e30ce72 /src | |
parent | 4b541f2251f126fed7387ef077d8f04f6eb88dd0 (diff) |
code cleaning
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_app/src/clcfiledrop.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mir_app/src/clcfiledrop.cpp b/src/mir_app/src/clcfiledrop.cpp index 9eafc08532..93960b09c4 100644 --- a/src/mir_app/src/clcfiledrop.cpp +++ b/src/mir_app/src/clcfiledrop.cpp @@ -33,7 +33,7 @@ struct CDropTarget : IDropTarget ULONG STDMETHODCALLTYPE AddRef(void);
ULONG STDMETHODCALLTYPE Release(void);
- HRESULT STDMETHODCALLTYPE QueryInterface(REFIID iid, void ** ppvObject);
+ HRESULT STDMETHODCALLTYPE QueryInterface(REFIID iid, void **ppvObject);
HRESULT STDMETHODCALLTYPE DragEnter(IDataObject *pDataObj, DWORD grfKeyState, POINTL pt, DWORD *pdwEffect);
HRESULT STDMETHODCALLTYPE DragOver(DWORD grfKeyState, POINTL pt, DWORD *pdwEffect);
@@ -45,7 +45,7 @@ static dropTarget; static HWND hwndCurrentDrag = nullptr;
static int originalSelection;
-HRESULT CDropTarget::QueryInterface(REFIID riid, LPVOID * ppvObj)
+HRESULT CDropTarget::QueryInterface(REFIID riid, void **ppvObj)
{
if (riid == IID_IDropTarget) {
*ppvObj = this;
|