From ec90908ccca0e6feb0ae587203b41a94dea9b35c Mon Sep 17 00:00:00 2001 From: cxl Date: Tue, 28 Jul 2015 16:52:33 +0000 Subject: [PATCH] .upptst git-svn-id: svn://ultimatepp.org/upp/trunk@8761 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- upptst/Assist/main.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/upptst/Assist/main.cpp b/upptst/Assist/main.cpp index 73a5dd864..b151be076 100644 --- a/upptst/Assist/main.cpp +++ b/upptst/Assist/main.cpp @@ -258,6 +258,12 @@ void Autocomplete() i. } +void Autocomplete() +{ + Vector> lvs; + lvs[0]. +} + void JumpTo() { Point p; @@ -291,16 +297,22 @@ void AddContact(); struct MYTabs : FileTabs { void RenameFile(const WString &from, const WString &to, Image icon = Null); void AddContact(); + int local; }; void MYTabs::RenameFile(const WString &from, const WString &to, Image icon) { + local; // jump to member + int local; FileTabs::RenameFile(from, to, icon); // should jump to FileTabs, not here Upp::FileTabs::RenameFile(from, to, icon); // should jump to FileTabs, not here ::Upp::FileTabs::RenameFile(from, to, icon); // should jump to FileTabs, not here RenameFile(from, to, icon); // to MyTabs MYTabs::RenameFile(from, to, icon); // to MyTabs ::MYTabs::RenameFile(from, to, icon); // to MyTabs + local; // jump to local variable + this->local; // jump to member + MYTabs::local; // jump to member } void MYTabs::AddContact()