Changeset 6466 for trunk/qt4-gui/src/dialogs
- Timestamp:
- 07/25/08 04:15:48 (4 months ago)
- Location:
- trunk/qt4-gui/src/dialogs
- Files:
-
- 9 modified
-
awaymsgdlg.cpp (modified) (1 diff)
-
editcategorydlg.cpp (modified) (1 diff)
-
historydlg.cpp (modified) (1 diff)
-
ownereditdlg.cpp (modified) (1 diff)
-
phonedlg.cpp (modified) (2 diffs)
-
randomchatdlg.cpp (modified) (1 diff)
-
securitydlg.cpp (modified) (2 diffs)
-
userinfodlg.cpp (modified) (2 diffs)
-
userselectdlg.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt4-gui/src/dialogs/awaymsgdlg.cpp
r6374 r6466 166 166 a->setData(999); 167 167 168 ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R);168 const ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R); 169 169 if (o == NULL) 170 170 return; -
trunk/qt4-gui/src/dialogs/editcategorydlg.cpp
r6374 r6466 125 125 void EditCategoryDlg::ok() 126 126 { 127 ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R);127 const ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R); 128 128 if (o != NULL) 129 129 { -
trunk/qt4-gui/src/dialogs/historydlg.cpp
r6463 r6466 236 236 gUserManager.DropUser(u); 237 237 238 ICQOwner* o = gUserManager.FetchOwner(myPpid, LOCK_R);238 const ICQOwner* o = gUserManager.FetchOwner(myPpid, LOCK_R); 239 239 if (o != NULL) 240 240 { -
trunk/qt4-gui/src/dialogs/ownereditdlg.cpp
r6374 r6466 91 91 if (ppid != 0) 92 92 { 93 ICQOwner* o = gUserManager.FetchOwner(ppid, LOCK_R);93 const ICQOwner* o = gUserManager.FetchOwner(ppid, LOCK_R); 94 94 if (o != NULL) 95 95 { -
trunk/qt4-gui/src/dialogs/phonedlg.cpp
r6374 r6466 53 53 setModal(true); 54 54 55 ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R);55 const ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R); 56 56 if (o == NULL) 57 57 { … … 236 236 } 237 237 238 ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R);238 const ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R); 239 239 if (o == NULL) 240 240 { -
trunk/qt4-gui/src/dialogs/randomchatdlg.cpp
r6374 r6466 181 181 myGroupsList->addItem(tr("Seeking Men")); 182 182 183 ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R);184 if (o == 0)183 const ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R); 184 if (o == NULL) 185 185 { 186 186 close(); -
trunk/qt4-gui/src/dialogs/securitydlg.cpp
r6374 r6466 51 51 setWindowTitle(title); 52 52 53 ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R);53 const ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R); 54 54 if (o == NULL) 55 55 { … … 99 99 void SecurityDlg::ok() 100 100 { 101 ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R);101 const ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R); 102 102 103 103 if (o == NULL) -
trunk/qt4-gui/src/dialogs/userinfodlg.cpp
r6463 r6466 1935 1935 #endif 1936 1936 1937 ICQOwner* o = gUserManager.FetchOwner(m_nPPID, LOCK_R);1937 const ICQOwner* o = gUserManager.FetchOwner(m_nPPID, LOCK_R); 1938 1938 if(o == NULL) return; 1939 1939 unsigned short status = o->Status(); … … 2029 2029 currentTab != PictureInfo) 2030 2030 { 2031 ICQOwner* o = gUserManager.FetchOwner(m_nPPID, LOCK_R);2031 const ICQOwner* o = gUserManager.FetchOwner(m_nPPID, LOCK_R); 2032 2032 if(o == NULL) return; 2033 2033 unsigned short status = o->Status(); -
trunk/qt4-gui/src/dialogs/userselectdlg.cpp
r6374 r6466 89 89 90 90 // For now, just have one owner 91 ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R);91 const ICQOwner* o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R); 92 92 if (o == 0) 93 93 {
