correct jump_to() functions

svn path=/trunk/; revision=8523
This commit is contained in:
Martin Fuchs
2004-03-03 20:33:21 +00:00
parent 30f3bfac23
commit f4ce2a5433
6 changed files with 7 additions and 6 deletions

View File

@@ -644,7 +644,7 @@ int FileChildWindow::Notify(int id, NMHDR* pnmh)
}
void FileChildWindow::jump_to(void* path)
void FileChildWindow::jump_to(LPCTSTR path)
{
//@@

View File

@@ -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);

View File

@@ -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);

View File

@@ -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)
{
//@@

View File

@@ -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);
};

View File

@@ -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;