Changeset 2140 for trunk/jons-gtk-gui
- Timestamp:
- 07/13/00 13:21:26 (8 years ago)
- Location:
- trunk/jons-gtk-gui/src
- Files:
-
- 3 modified
-
contact_list.cpp (modified) (1 diff)
-
main_window.cpp (modified) (1 diff)
-
menu.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/jons-gtk-gui/src/contact_list.cpp
r2139 r2140 232 232 233 233 // See if they are not offline and want to be auto secured 234 if(pUser-> AutoSecure())234 if(pUser->Status() != ICQ_STATUS_OFFLINE && pUser->AutoSecure()) 235 235 { 236 236 // Ok, now *can* they be auto secured? 237 237 if((pUser->SecureChannelSupport() == SECURE_CHANNEL_SUPPORTED) && !pUser->Secure()) 238 238 AutoSecureList.push_back(pUser->Uin()); 239 //icq_daemon->icqOpenSecureChannel(_uin);240 239 } 241 240 -
trunk/jons-gtk-gui/src/main_window.cpp
r2128 r2140 29 29 void main_window_delete_event(GtkWidget *mainwindow, gpointer data) 30 30 { 31 gtk_main_quit();31 icq_daemon->Shutdown(); 32 32 } 33 33 -
trunk/jons-gtk-gui/src/menu.cpp
r2120 r2140 150 150 void menu_system_quit(GtkWidget *blah, gpointer data) 151 151 { 152 gtk_main_quit();152 icq_daemon->Shutdown(); 153 153 } 154 154
