Changeset 3406 for trunk/jons-gtk2-gui
- Timestamp:
- 03/24/03 04:00:20 (6 years ago)
- Files:
-
- 1 modified
-
trunk/jons-gtk2-gui/src/contact_list.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/jons-gtk2-gui/src/contact_list.cpp
r3396 r3406 323 323 } 324 324 325 void convo_open _cb(ICQUser *user);325 void convo_open(ICQUser *user); 326 326 void list_send_url(GtkWidget *, ICQUser *); 327 327 void list_request_file(GtkWidget *, ICQUser *); … … 356 356 /* A left mouse double-click */ 357 357 if (event->button == 1 && event->type == GDK_2BUTTON_PRESS) 358 convo_open(user , true);358 convo_open(user); 359 359 /* A right click.. make the popup menu */ 360 360 else if(event->type == GDK_BUTTON_PRESS && event->button == 3) … … 374 374 375 375 menu_new_item_with_pixmap(_menu, "Start Conversation", 376 GTK_SIGNAL_FUNC(convo_open _cb), message_icon, user);376 GTK_SIGNAL_FUNC(convo_open), message_icon, user); 377 377 378 378 menu_new_item_with_pixmap(_menu, "Send URL",
