Author |
Topic |
|
supercloud
Senior Member
43 Posts |
Posted - Oct 25 2005 : 11:57:14 PM
|
The following is a simple header file.
#ifndef __test_h__ #define __test_h__
class CTest { public: inline void SetValue(int a, int b); };
inline void CTest::SetValue(int a, int b) { } #endif // __test_h__
When the mouse hovers over the function SetValue, two tooltip items appear as illustrated as follows:
void CTest.CTest::SetValue(int a, int b)
void CTest::SetValue(int a, int b)
The dropdown list appears two items, too. |
|
WannabeeDeveloper
Tomato Guru
Germany
775 Posts |
Posted - Oct 26 2005 : 03:36:28 AM
|
My guess is that one tooltip comes from VS and the other one from VAX.
Which IDE are you using? I can test if that behaviour shows on my system...
Maybe this thread is about the same behaviour: http://forum.wholetomato.com/forum/topic.asp?TOPIC_ID=4085
|
|
Edited by - WannabeeDeveloper on Oct 26 2005 03:37:14 AM |
|
|
supercloud
Senior Member
43 Posts |
Posted - Oct 26 2005 : 9:01:42 PM
|
VC 6.0 & VAX 1428, win server 2003 |
|
|
feline
Whole Tomato Software
United Kingdom
19014 Posts |
Posted - Oct 27 2005 : 6:48:28 PM
|
there are two entries in the alt_m list since there are two "entries" for this function in the header file. i am seeing the same thing here. the first entry takes you to the definition, and the second entry takes you to the declaration, so this is correct.
for the tooltip, if i hover over the declaration then i get the expected tooltip, but if i hover definition then i get a tooltip that is 3 lines deep, holding the two lines that you have posted
case=863 |
zen is the art of being at one with the two'ness |
|
|
|
Topic |
|