Changeset 6466 for trunk/qt4-gui/src/core/systemmenu.cpp
- Timestamp:
- 07/25/08 04:15:48 (4 months ago)
- Files:
-
- 1 modified
-
trunk/qt4-gui/src/core/systemmenu.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt4-gui/src/core/systemmenu.cpp
r6374 r6466 374 374 void SystemMenu::aboutToShowFollowMeMenu() 375 375 { 376 ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R);376 const ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R); 377 377 if (o == NULL) 378 378 return; … … 654 654 void OwnerData::aboutToShowStatusMenu() 655 655 { 656 ICQOwner* o = gUserManager.FetchOwner(myPpid, LOCK_R);656 const ICQOwner* o = gUserManager.FetchOwner(myPpid, LOCK_R); 657 657 if (o == NULL) 658 658 return; … … 675 675 void OwnerData::viewInfo() 676 676 { 677 ICQOwner* o = gUserManager.FetchOwner(myPpid, LOCK_R);677 const ICQOwner* o = gUserManager.FetchOwner(myPpid, LOCK_R); 678 678 if (o == NULL) 679 679 return; … … 686 686 void OwnerData::viewHistory() 687 687 { 688 ICQOwner* o = gUserManager.FetchOwner(myPpid, LOCK_R);688 const ICQOwner* o = gUserManager.FetchOwner(myPpid, LOCK_R); 689 689 if (o == NULL) 690 690 return;
