------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=103506 coding reduz com ar changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|code completion ignores |code completion ignores |operator->() and * |operator->() and * ------- Additional Comments From coding reduz com ar 2005-04-25 16:50 ------- I guess in more detail, if you overload operator -> in your class say you have: MyClass class; then you try to use the operator by writing: class-> then code completion should work here, by checking the return type of the operator->() the same thing as if I try to use (*class). or (*class)-> should realize operator* is being overloaded.