Changeset 3453 for trunk/jons-gtk2-gui
- Timestamp:
- 04/20/03 09:45:33 (6 years ago)
- Files:
-
- 1 modified
-
trunk/jons-gtk2-gui/src/security_window.cpp (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/jons-gtk2-gui/src/security_window.cpp
r3413 r3453 20 20 21 21 #include "licq_gtk.h" 22 #include "utilities.h" 22 23 23 24 #include <gtk/gtk.h> … … 150 151 us->check_auth = gtk_check_button_new_with_label("Authorization Required"); 151 152 gtk_tooltips_set_tip(GTK_TOOLTIPS(tooltips), us->check_auth, 152 "Determines whether regular ICQ clients require your authorization to add you to their contact list.", 0);153 "Determines whether regular ICQ clients require your authorization to add you to their contact list.", NULL); 153 154 gtk_box_pack_start(GTK_BOX(v_box), us->check_auth, FALSE, FALSE, 0); 154 155 … … 156 157 us->check_web = gtk_check_button_new_with_label("Web Presence"); 157 158 gtk_tooltips_set_tip(GTK_TOOLTIPS(tooltips), us->check_web, 158 "Web Presence allows users to see if you are online through your web indicator.", 0);159 "Web Presence allows users to see if you are online through your web indicator.", NULL); 159 160 gtk_box_pack_start(GTK_BOX(v_box), us->check_web, FALSE, FALSE, 0); 160 161 161 /* Third opt oin */162 /* Third option */ 162 163 us->check_hideip = gtk_check_button_new_with_label("Hide IP"); 163 164 gtk_tooltips_set_tip(GTK_TOOLTIPS(tooltips), us->check_hideip, 164 "Hiding IP is a minor prevention for regular ICQ clients to not reveal your IP to users.", 0);165 "Hiding IP is a minor prevention for regular ICQ clients to not reveal your IP to users.", NULL); 165 166 gtk_box_pack_start(GTK_BOX(v_box), us->check_hideip, FALSE, FALSE, 0); 166 167 … … 306 307 gtk_list_store_set(store, &iter, 307 308 0, pUser->Uin(), 308 1, pUser->GetAlias(),309 1, (s_convert_to_utf8(pUser->GetAlias(), pUser->UserEncoding())).c_str(), 309 310 2, pUser->GetEmailPrimary(), 310 311 3, (gpointer)pUser, -1); … … 324 325 gtk_list_store_set(store, &iter, 325 326 0, pUser->Uin(), 326 1, pUser->GetAlias(),327 1, (s_convert_to_utf8(pUser->GetAlias(), pUser->UserEncoding())).c_str(), 327 328 2, pUser->GetEmailPrimary(), 328 329 3, (gpointer)pUser, -1); … … 342 343 gtk_list_store_set(store, &iter, 343 344 0, pUser->Uin(), 344 1, pUser->GetAlias(),345 1, (s_convert_to_utf8(pUser->GetAlias(), pUser->UserEncoding())).c_str(), 345 346 2, pUser->GetEmailPrimary(), 346 347 3, (gpointer)pUser, -1);
