Changeset 3453 for trunk/jons-gtk2-gui

Show
Ignore:
Timestamp:
04/20/03 09:45:33 (6 years ago)
Author:
bostjanlah
Message:

More utf8 fixes from Matias

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jons-gtk2-gui/src/security_window.cpp

    r3413 r3453  
    2020 
    2121#include "licq_gtk.h" 
     22#include "utilities.h" 
    2223 
    2324#include <gtk/gtk.h> 
     
    150151    us->check_auth = gtk_check_button_new_with_label("Authorization Required"); 
    151152    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); 
    153154    gtk_box_pack_start(GTK_BOX(v_box), us->check_auth, FALSE, FALSE, 0); 
    154155 
     
    156157    us->check_web = gtk_check_button_new_with_label("Web Presence"); 
    157158    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);     
    159160    gtk_box_pack_start(GTK_BOX(v_box), us->check_web, FALSE, FALSE, 0); 
    160161 
    161     /* Third optoin */ 
     162    /* Third option */ 
    162163    us->check_hideip = gtk_check_button_new_with_label("Hide IP"); 
    163164    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); 
    165166    gtk_box_pack_start(GTK_BOX(v_box), us->check_hideip, FALSE, FALSE, 0); 
    166167 
     
    306307            gtk_list_store_set(store, &iter, 
    307308                    0, pUser->Uin(), 
    308                     1, pUser->GetAlias(), 
     309                    1, (s_convert_to_utf8(pUser->GetAlias(), pUser->UserEncoding())).c_str(), 
    309310                    2, pUser->GetEmailPrimary(), 
    310311                    3, (gpointer)pUser, -1); 
     
    324325            gtk_list_store_set(store, &iter, 
    325326                    0, pUser->Uin(), 
    326                     1, pUser->GetAlias(), 
     327                    1, (s_convert_to_utf8(pUser->GetAlias(), pUser->UserEncoding())).c_str(), 
    327328                    2, pUser->GetEmailPrimary(), 
    328329                    3, (gpointer)pUser, -1); 
     
    342343            gtk_list_store_set(store, &iter, 
    343344                    0, pUser->Uin(), 
    344                     1, pUser->GetAlias(), 
     345                    1, (s_convert_to_utf8(pUser->GetAlias(), pUser->UserEncoding())).c_str(), 
    345346                    2, pUser->GetEmailPrimary(), 
    346347                    3, (gpointer)pUser, -1);