mirror of
https://github.com/reactos/reactos.git
synced 2026-07-07 11:50:19 +08:00
correct jump_to() functions
svn path=/trunk/; revision=8523
This commit is contained in:
@@ -644,7 +644,7 @@ int FileChildWindow::Notify(int id, NMHDR* pnmh)
|
||||
}
|
||||
|
||||
|
||||
void FileChildWindow::jump_to(void* path)
|
||||
void FileChildWindow::jump_to(LPCTSTR path)
|
||||
{
|
||||
|
||||
//@@
|
||||
|
||||
@@ -100,7 +100,7 @@ protected:
|
||||
int Notify(int id, NMHDR* pnmh);
|
||||
|
||||
virtual void resize_children(int cx, int cy);
|
||||
virtual void jump_to(void* path);
|
||||
virtual void jump_to(LPCTSTR path);
|
||||
|
||||
void scan_entry(Entry* entry, HWND hwnd);
|
||||
|
||||
|
||||
@@ -125,7 +125,8 @@ protected:
|
||||
int InsertSubitems(HTREEITEM hParentItem, Entry* entry, IShellFolder* pParentFolder);
|
||||
bool InitDragDrop();
|
||||
|
||||
virtual void jump_to(void* path);
|
||||
virtual void jump_to(LPCTSTR path);
|
||||
void jump_to(LPCITEMIDLIST pidl);
|
||||
|
||||
HRESULT OnDefaultCommand(LPIDA pida);
|
||||
|
||||
|
||||
@@ -288,7 +288,7 @@ LRESULT WebChildWindow::WndProc(UINT message, WPARAM wparam, LPARAM lparam)
|
||||
}
|
||||
|
||||
|
||||
void WebChildWindow::jump_to(void* path)
|
||||
void WebChildWindow::jump_to(LPCTSTR path)
|
||||
{
|
||||
|
||||
//@@
|
||||
|
||||
@@ -1076,5 +1076,5 @@ protected:
|
||||
|
||||
LRESULT WndProc(UINT message, WPARAM wparam, LPARAM lparam);
|
||||
|
||||
virtual void jump_to(void* path);
|
||||
virtual void jump_to(LPCTSTR path);
|
||||
};
|
||||
|
||||
@@ -293,7 +293,7 @@ protected:
|
||||
LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam);
|
||||
|
||||
virtual void resize_children(int cx, int cy);
|
||||
virtual void jump_to(void* path) = 0;
|
||||
virtual void jump_to(LPCTSTR path) = 0;
|
||||
|
||||
protected:
|
||||
MenuInfo*_menu_info;
|
||||
|
||||
Reference in New Issue
Block a user