Changeset 1862

Show
Ignore:
Timestamp:
04/29/07 13:44:26
Author:
pvanhoof
Message:

Documentation updates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/docs/devel/reference/tmpl/mozilla-preferences.sgml

    r1200 r1862  
    1818 
    1919 
    20 <!-- ##### FUNCTION mozilla_preference_set ##### --> 
    21 <para> 
    22  
    23 </para> 
    24  
    25 @preference_name:  
    26 @new_value:  
    27 @Returns:  
    28  
    29  
    30 <!-- ##### FUNCTION mozilla_preference_set_boolean ##### --> 
    31 <para> 
    32  
    33 </para> 
    34  
    35 @preference_name:  
    36 @new_boolean_value:  
    37 @Returns:  
    38  
    39  
    40 <!-- ##### FUNCTION mozilla_preference_set_int ##### --> 
    41 <para> 
    42  
    43 </para> 
    44  
    45 @preference_name:  
    46 @new_int_value:  
    47 @Returns:  
    48  
    49  
  • trunk/docs/devel/reference/tmpl/tny-camel-shared.sgml

    r1412 r1862  
    1616 
    1717<!-- ##### SECTION Stability_Level ##### --> 
    18  
    19  
    20 <!-- ##### VARIABLE camel_type_init_done ##### --> 
    21 <para> 
    22  
    23 </para> 
    2418 
    2519 
  • trunk/docs/devel/reference/tmpl/tny-enums.sgml

    r1854 r1862  
    169169@TNY_HEADER_FLAG_CACHED: The message is cached 
    170170@TNY_HEADER_FLAG_PARTIAL: The message is retrieved partially 
    171 @TNY_HEADER_FLAG_EXPUNGED:  
     171@TNY_HEADER_FLAG_EXPUNGED: The message got expunged and therefore is the header instance invalid 
     172@TNY_HEADER_FLAG_PRIORITY: Priority information is available, use the TnyHeaderPriorityFlags type as mask 
    172173 
    173174<!-- ##### ENUM TnyFolderType ##### --> 
  • trunk/libtinymail-camel/tny-camel-account.c

    r1718 r1862  
    10471047        static GType type = 0; 
    10481048 
    1049         if (G_UNLIKELY (!camel_type_init_done)) 
     1049        if (G_UNLIKELY (!_camel_type_init_done)) 
    10501050        { 
    10511051                if (!g_thread_supported ())  
    10521052                        g_thread_init (NULL); 
    10531053                camel_type_init (); 
    1054                 camel_type_init_done = TRUE; 
     1054                _camel_type_init_done = TRUE; 
    10551055        } 
    10561056 
  • trunk/libtinymail-camel/tny-camel-folder.c

    r1847 r1862  
    32893289        static GType type = 0; 
    32903290 
    3291         if (G_UNLIKELY (!camel_type_init_done)) 
     3291        if (G_UNLIKELY (!_camel_type_init_done)) 
    32923292        { 
    32933293                if (!g_thread_supported ())  
     
    32953295 
    32963296                camel_type_init (); 
    3297                 camel_type_init_done = TRUE; 
     3297                _camel_type_init_done = TRUE; 
    32983298        } 
    32993299 
  • trunk/libtinymail-camel/tny-camel-header.c

    r1762 r1862  
    392392        static GType type = 0; 
    393393 
    394         if (G_UNLIKELY (!camel_type_init_done)) 
     394        if (G_UNLIKELY (!_camel_type_init_done)) 
    395395        { 
    396396                if (!g_thread_supported ())  
     
    398398 
    399399                camel_type_init (); 
    400                 camel_type_init_done = TRUE; 
     400                _camel_type_init_done = TRUE; 
    401401        } 
    402402 
  • trunk/libtinymail-camel/tny-camel-imap-folder.c

    r1691 r1862  
    9292        static GType type = 0; 
    9393 
    94         if (G_UNLIKELY (!camel_type_init_done)) 
     94        if (G_UNLIKELY (!_camel_type_init_done)) 
    9595        { 
    9696                if (!g_thread_supported ())  
     
    9898 
    9999                camel_type_init (); 
    100                 camel_type_init_done = TRUE; 
     100                _camel_type_init_done = TRUE; 
    101101        } 
    102102 
  • trunk/libtinymail-camel/tny-camel-imap-store-account.c

    r1858 r1862  
    146146        static GType type = 0; 
    147147 
    148         if (G_UNLIKELY (!camel_type_init_done)) 
     148        if (G_UNLIKELY (!_camel_type_init_done)) 
    149149        { 
    150150                if (!g_thread_supported ())  
     
    152152 
    153153                camel_type_init (); 
    154                 camel_type_init_done = TRUE; 
     154                _camel_type_init_done = TRUE; 
    155155        } 
    156156 
  • trunk/libtinymail-camel/tny-camel-mime-part.c

    r1700 r1862  
    821821 * tny_camel_mime_part_new: 
    822822 *  
     823 * Create a new MIME part instance 
     824 *  
    823825 * Return value: A new #TnyMimePart instance implemented for Camel 
    824826 **/ 
     
    837839/** 
    838840 * tny_camel_mime_part_new_with_part: 
     841 * @part: a #CamelMimePart object 
    839842 *  
    840  * The #TnyMimePart implementation is actually a proxy for #CamelMimePart. 
     843 * Create a new MIME part instance that is a proxy for a #CamelMimePart one 
    841844 * 
    842845 * Return value: A new #TnyMimePart instance implemented for Camel 
     
    936939        static GType type = 0; 
    937940 
    938         if (G_UNLIKELY (!camel_type_init_done)) 
     941        if (G_UNLIKELY (!_camel_type_init_done)) 
    939942        { 
    940943                if (!g_thread_supported ())  
     
    942945 
    943946                camel_type_init (); 
    944                 camel_type_init_done = TRUE; 
     947                _camel_type_init_done = TRUE; 
    945948        } 
    946949 
  • trunk/libtinymail-camel/tny-camel-msg-header.c

    r1700 r1862  
    415415        static GType type = 0; 
    416416 
    417         if (G_UNLIKELY (!camel_type_init_done)) 
     417        if (G_UNLIKELY (!_camel_type_init_done)) 
    418418        { 
    419419                if (!g_thread_supported ())  
     
    421421 
    422422                camel_type_init (); 
    423                 camel_type_init_done = TRUE; 
     423                _camel_type_init_done = TRUE; 
    424424        } 
    425425 
  • trunk/libtinymail-camel/tny-camel-msg.c

    r1717 r1862  
    335335        static GType type = 0; 
    336336 
    337         if (G_UNLIKELY (!camel_type_init_done)) 
     337        if (G_UNLIKELY (!_camel_type_init_done)) 
    338338        { 
    339339                if (!g_thread_supported ())  
     
    341341 
    342342                camel_type_init (); 
    343                 camel_type_init_done = TRUE; 
     343                _camel_type_init_done = TRUE; 
    344344        } 
    345345 
  • trunk/libtinymail-camel/tny-camel-nntp-folder.c

    r1693 r1862  
    128128        static GType type = 0; 
    129129 
    130         if (G_UNLIKELY (!camel_type_init_done)) 
     130        if (G_UNLIKELY (!_camel_type_init_done)) 
    131131        { 
    132132                if (!g_thread_supported ())  
     
    134134 
    135135                camel_type_init (); 
    136                 camel_type_init_done = TRUE; 
     136                _camel_type_init_done = TRUE; 
    137137        } 
    138138 
  • trunk/libtinymail-camel/tny-camel-nntp-store-account.c

    r1692 r1862  
    115115 * tny_camel_nntp_store_account_new: 
    116116 *  
     117 * Create a new NNTP #TnyStoreAccount instance implemented for Camel 
    117118 * 
    118119 * Return value: A new NNTP #TnyStoreAccount instance implemented for Camel 
     
    170171        static GType type = 0; 
    171172 
    172         if (G_UNLIKELY (!camel_type_init_done)) 
     173        if (G_UNLIKELY (!_camel_type_init_done)) 
    173174        { 
    174175                if (!g_thread_supported ())  
     
    176177 
    177178                camel_type_init (); 
    178                 camel_type_init_done = TRUE; 
     179                _camel_type_init_done = TRUE; 
    179180        } 
    180181 
  • trunk/libtinymail-camel/tny-camel-pop-folder.c

    r1693 r1862  
    130130        static GType type = 0; 
    131131 
    132         if (G_UNLIKELY (!camel_type_init_done)) 
     132        if (G_UNLIKELY (!_camel_type_init_done)) 
    133133        { 
    134134                if (!g_thread_supported ())  
     
    136136 
    137137                camel_type_init (); 
    138                 camel_type_init_done = TRUE; 
     138                _camel_type_init_done = TRUE; 
    139139        } 
    140140 
  • trunk/libtinymail-camel/tny-camel-pop-store-account.c

    r1691 r1862  
    111111 * tny_camel_pop_store_account_new: 
    112112 *  
     113 * Create a new POP #TnyStoreAccount instance implemented for Camel 
    113114 * 
    114115 * Return value: A new POP #TnyStoreAccount instance implemented for Camel 
     
    212213        static GType type = 0; 
    213214 
    214         if (G_UNLIKELY (!camel_type_init_done)) 
     215        if (G_UNLIKELY (!_camel_type_init_done)) 
    215216        { 
    216217                if (!g_thread_supported ())  
     
    218219 
    219220                camel_type_init (); 
    220                 camel_type_init_done = TRUE; 
     221                _camel_type_init_done = TRUE; 
    221222        } 
    222223 
  • trunk/libtinymail-camel/tny-camel-send-queue.c

    r1817 r1862  
    519519 * @trans_account: A #TnyCamelTransportAccount instance 
    520520 * 
     521 * Create a new #TnySendQueue instance implemented for Camel 
    521522 * 
    522523 * Return value: A new #TnySendQueue instance implemented for Camel 
     
    546547void 
    547548tny_camel_send_queue_set_transport_account (TnyCamelSendQueue *self, 
    548                                             TnyCamelTransportAccount *acc
     549                                            TnyCamelTransportAccount *trans_account
    549550{ 
    550551        TnyCamelSendQueuePriv *priv; 
    551552         
    552553        g_return_if_fail (TNY_IS_CAMEL_SEND_QUEUE(self)); 
    553         g_return_if_fail (TNY_IS_CAMEL_TRANSPORT_ACCOUNT(acc)); 
     554        g_return_if_fail (TNY_IS_CAMEL_TRANSPORT_ACCOUNT(trans_account)); 
    554555 
    555556        priv = TNY_CAMEL_SEND_QUEUE_GET_PRIVATE (self); 
     
    557558                g_object_unref (G_OBJECT(priv->trans_account)); 
    558559         
    559         priv->trans_account = TNY_TRANSPORT_ACCOUNT (g_object_ref(G_OBJECT(acc))); 
     560        priv->trans_account = TNY_TRANSPORT_ACCOUNT (g_object_ref(G_OBJECT(trans_account))); 
    560561} 
    561562 
     
    564565 * @self: a valid #TnyCamelSendQueue instance 
    565566 * 
    566  * get the transport account for this send queue. 
    567  * 
    568  * Return value: A #TnyCamelTransportAccount instance or NULL; unref it 
    569  * when you no longer need it. 
     567 * Get the transport account for this send queue. If not NULL, the returned value  
     568 * must be unreferences when no longer needed. 
     569 * 
     570 * Return value: A #TnyCamelTransportAccount instance or NULL 
    570571 **/ 
    571572TnyCamelTransportAccount* 
     
    586587 
    587588/** 
    588  * tny_camel_send_queue_new
     589 * tny_camel_send_queue_flush
    589590 * @self: a valid #TnyCamelSendQueue instance 
    590591 * 
     
    679680        static GType type = 0; 
    680681 
    681         if (G_UNLIKELY (!camel_type_init_done)) 
     682        if (G_UNLIKELY (!_camel_type_init_done)) 
    682683        { 
    683684                if (!g_thread_supported ())  
     
    685686 
    686687                camel_type_init (); 
    687                 camel_type_init_done = TRUE; 
     688                _camel_type_init_done = TRUE; 
    688689        } 
    689690 
  • trunk/libtinymail-camel/tny-camel-shared.h

    r900 r1862  
    2323#include <tny-shared.h> 
    2424 
    25 extern gboolean camel_type_init_done; 
     25extern gboolean _camel_type_init_done; 
    2626 
    2727typedef struct _TnySessionCamel TnySessionCamel; 
  • trunk/libtinymail-camel/tny-camel-store-account.c

    r1753 r1862  
    309309 * tny_camel_store_account_new: 
    310310 *  
     311 * Create a new #TnyStoreAccount instance implemented for Camel 
    311312 * 
    312313 * Return value: A new #TnyStoreAccount instance implemented for Camel 
     
    580581} 
    581582 
     583/** 
     584 * tny_camel_store_account_factor_folder: 
     585 * @self: a valid #TnyCamelStoreAccount instance 
     586 * @full_name: the name of the folder to create 
     587 * @was_new: whether or not a new instance got created (by reference) 
     588 *  
     589 * Factor a new TnyFolder instance. It's possible that an existing one is reused 
     590 * In that case will a reference be added to the instance. If an existing 
     591 * instance was not available, a new one will be created and remembered for in  
     592 * case a new request happens. 
     593 *  
     594 * Return value: A #TnyCamelTransportAccount instance or NULL 
     595 **/ 
    582596TnyFolder * 
    583597tny_camel_store_account_factor_folder (TnyCamelStoreAccount *self, const gchar *full_name, gboolean *was_new) 
     
    10431057        static GType type = 0; 
    10441058 
    1045         if (G_UNLIKELY (!camel_type_init_done)) 
     1059        if (G_UNLIKELY (!_camel_type_init_done)) 
    10461060        { 
    10471061                if (!g_thread_supported ())  
     
    10491063 
    10501064                camel_type_init (); 
    1051                 camel_type_init_done = TRUE; 
     1065                _camel_type_init_done = TRUE; 
    10521066        } 
    10531067 
  • trunk/libtinymail-camel/tny-camel-stream.c

    r1347 r1862  
    136136 * The returned value must be unreferenced  
    137137 * 
    138  * Return: the stream to play proxy for 
     138 * Return value: the stream to play proxy for 
    139139 **/ 
    140140CamelStream * 
     
    166166 * @stream: A #CamelStream stream to play proxy for 
    167167 * 
     168 * Create a new #TnyStream instance implemented as a proxy 
     169 * for a #CamelStream 
     170 *  
    168171 * Return value: A new #TnyStream instance implemented as a proxy 
    169172 * for a #CamelStream 
     
    242245        static GType type = 0; 
    243246 
    244         if (G_UNLIKELY (!camel_type_init_done)) 
     247        if (G_UNLIKELY (!_camel_type_init_done)) 
    245248        { 
    246249                if (!g_thread_supported ())  
     
    248251 
    249252                camel_type_init (); 
    250                 camel_type_init_done = TRUE; 
     253                _camel_type_init_done = TRUE; 
    251254        } 
    252255 
  • trunk/libtinymail-camel/tny-camel-transport-account.c

    r1799 r1862  
    341341 * tny_camel_transport_account_new: 
    342342 *  
    343  * 
     343 * Create a new #TnyTransportAccount instance implemented for Camel 
     344 *  
    344345 * Return value: A new #TnyTransportAccount instance implemented for Camel 
    345346 **/ 
     
    415416        static GType type = 0; 
    416417 
    417         if (G_UNLIKELY (!camel_type_init_done)) 
     418        if (G_UNLIKELY (!_camel_type_init_done)) 
    418419        { 
    419420                if (!g_thread_supported ())  
     
    421422 
    422423                camel_type_init (); 
    423                 camel_type_init_done = TRUE; 
     424                _camel_type_init_done = TRUE; 
    424425        } 
    425426 
  • trunk/libtinymail-camel/tny-session-camel.c

    r1858 r1862  
    5252#include <tny-camel-shared.h> 
    5353 
    54 gboolean camel_type_init_done = FALSE; 
     54gboolean _camel_type_init_done = FALSE; 
    5555 
    5656static CamelSessionClass *ms_parent_class; 
     
    662662        static CamelType tny_session_camel_type = CAMEL_INVALID_TYPE; 
    663663 
    664         if (G_UNLIKELY (!camel_type_init_done)) 
     664        if (G_UNLIKELY (!_camel_type_init_done)) 
    665665        { 
    666666                if (!g_thread_supported ())  
    667667                        g_thread_init (NULL); 
    668668                camel_type_init (); 
    669                 camel_type_init_done = TRUE; 
     669                _camel_type_init_done = TRUE; 
    670670        } 
    671671 
  • trunk/libtinymail-camel/tny-stream-camel.c

    r966 r1862  
    154154        static CamelType type = CAMEL_INVALID_TYPE; 
    155155         
    156         if (G_UNLIKELY (!camel_type_init_done)) 
     156        if (G_UNLIKELY (!_camel_type_init_done)) 
    157157        { 
    158158                if (!g_thread_supported ())  
     
    160160 
    161161                camel_type_init (); 
    162                 camel_type_init_done = TRUE; 
     162                _camel_type_init_done = TRUE; 
    163163        } 
    164164 
     
    206206 * @stream: A #TnyStream stream to play proxy for 
    207207 * 
     208 * Create a new #CamelStream instance implemented as a proxy 
     209 * for a #TnyStream 
     210 *  
    208211 * Return value: A new #CamelStream instance implemented as a proxy 
    209212 * for a #TnyStream 
  • trunk/libtinymail-gnome-desktop/tny-gnome-account-store.c

    r1858 r1862  
    443443/* 
    444444        gconftool-2 -s /apps/tinymail/cache_dir -t string .tinymail 
    445  
    446445        gconftool-2 -s /apps/tinymail/accounts/count -t int COUNT 
    447446        gconftool-2 -s /apps/tinymail/accounts/0/proto -t string [smtp|imap|pop] 
    448447        gconftool-2 -s /apps/tinymail/accounts/0/type -t string [transport|store] 
    449  
    450448        gconftool-2 -s /apps/tinymail/accounts/0/user -t string username 
    451449        gconftool-2 -s /apps/tinymail/accounts/0/hostname -t string mailserver 
  • trunk/libtinymail/tny-account.c

    r1855 r1862  
    329329 * @self: a #TnyAccount object 
    330330 *  
     331 * Get a pointer to the forget-password function 
     332 * 
    331333 * Return value: A pointer to the forget-password function 
    332  * 
    333334 **/ 
    334335TnyForgetPassFunc 
     
    778779 * @self: a #TnyAccount object 
    779780 *  
     781 * Get a pointer to the get-password function 
     782 * 
    780783 * Return value: A pointer to the get-password function 
    781  * 
    782784 **/ 
    783785TnyGetPassFunc 
  • trunk/libtinymail/tny-enums.h

    r1827 r1862  
    115115        TNY_HEADER_FLAG_CACHED = 1<<6, 
    116116        TNY_HEADER_FLAG_PARTIAL = 1<<7, 
    117         TNY_HEADER_FLAG_EXPUNGED = 1<<8 
     117        TNY_HEADER_FLAG_EXPUNGED = 1<<8, 
     118        TNY_HEADER_FLAG_PRIORITY = 1<<9|1<<10 
    118119} TnyHeaderFlags; 
     120 
     121 
     122typedef enum { 
     123        TNY_HEADER_FLAG_HIGH_PRIORITY = 1<<9|1<<10, 
     124        TNY_HEADER_FLAG_NORMAL_PRIORITY = 0<<9|0<<10, 
     125        TNY_HEADER_FLAG_LOW_PRIORITY = 0<<9|1<<10 
     126} TnyHeaderPriorityFlags; 
    119127 
    120128typedef enum { 
  • trunk/libtinymail/tny-folder-store-change.c

    r1856 r1862  
    4444 * 
    4545 * Get an enum with all the changed things 
     46 * 
     47 * Return value: An enum with all the changed things 
    4648 **/ 
    4749TnyFolderStoreChangeChanged  
  • trunk/libtinymail/tny-folder-store-query.c

    r1727 r1862  
    3232 * tny_folder_store_query_new: 
    3333 * 
    34  * Return value: a new #TnyFolderStoreQuery instance 
    35  * 
     34 * Create a new #TnyFolderStoreQuery instance 
     35 *  
     36 * Return value: A new #TnyFolderStoreQuery instance 
    3637 **/ 
    3738TnyFolderStoreQuery*  
  • trunk/libtinymail/tny-status.c

    r1858 r1862  
    5454/** 
    5555 * tny_status_set_fraction: 
     56 * @status: a #TnyStatus instance 
    5657 * @fraction: the fraction to set 
    5758 *  
     
    6970/** 
    7071 * tny_status_get_fraction: 
     72 * @status: a #TnyStatus instance 
    7173 *  
    7274 * Get the fraction of @status 
  • trunk/libtinymail/tny-store-account.c

    r1737 r1862  
    3434 * @self: a #TnyStoreAccount object 
    3535 * @url_string: the url-string of the folder to find 
     36 * @err: a #GError object 
    3637 * 
    3738 * Try to find the folder in @self that corresponds to @url_string. If this  
  • trunk/libtinymailui-gtk/tny-gtk-attachment-mime-part-view.c

    r1204 r1862  
    121121 * tny_gtk_attachment_mime_part_view_new: 
    122122 * @iview: A #TnyGtkAttachListModel instance 
    123  * 
     123 *  
     124 * Create a new #TnyMimePartView instance implemented for Gtk+ 
     125 *  
    124126 * Return value: a new #TnyMimePartView instance implemented for Gtk+ 
    125127 **/ 
  • trunk/libtinymailui-gtk/tny-gtk-folder-store-tree-model.c

    r1845 r1862  
    258258 * @query: the #TnyFolderStoreQuery that will be used to retrieve the folders of each folder_store 
    259259 * 
     260 * Create a new #GtkTreeModel instance suitable for showing   
     261 * #TnyFolderStore instances 
     262 *  
    260263 * Return value: a new #GtkTreeModel instance suitable for showing   
    261264 * #TnyFolderStore instances 
  • trunk/libtinymailui-gtk/tny-gtk-header-list-model.c

    r1793 r1862  
    809809 * tny_gtk_header_list_model_new: 
    810810 * 
     811 * Create a new #GtkTreeModel instance suitable for showing lots of  
     812 * #TnyHeader instances 
    811813 * 
    812814 * Return value: a new #GtkTreeModel instance suitable for showing lots of  
  • trunk/libtinymailui-gtk/tny-gtk-header-view.c

    r1477 r1862  
    130130/** 
    131131 * tny_gtk_header_view_new: 
     132 * 
     133 * Create a new #TnyHeaderView instance implemented for Gtk+ 
    132134 * 
    133135 * Return value: a new #TnyHeaderView instance implemented for Gtk+ 
  • trunk/libtinymailui-gtk/tny-gtk-msg-view.c

    r1858 r1862  
    675675/** 
    676676 * tny_gtk_msg_view_new: 
     677 * 
     678 * Create a new #TnyMsgView instance implemented for Gtk+ 
    677679 * 
    678680 * Return value: a new #TnyMsgView instance implemented for Gtk+ 
  • trunk/libtinymailui-mozembed/mozilla-preferences.cpp

    r1172 r1862  
    3030 
    3131extern "C" gboolean 
    32 mozilla_preference_set (const char *preference_name, const char *new_value) 
     32_mozilla_preference_set (const char *preference_name, const char *new_value) 
    3333{ 
    3434    g_return_val_if_fail (preference_name != NULL, FALSE); 
     
    4848 
    4949extern "C" gboolean 
    50 mozilla_preference_set_boolean (const char *preference_name, gboolean new_boolean_value) 
     50_mozilla_preference_set_boolean (const char *preference_name, gboolean new_boolean_value) 
    5151{ 
    5252    g_return_val_if_fail (preference_name != NULL, FALSE); 
     
    6666 
    6767extern "C" gboolean 
    68 mozilla_preference_set_int (const char *preference_name, gint new_int_value) 
     68_mozilla_preference_set_int (const char *preference_name, gint new_int_value) 
    6969{ 
    7070    g_return_val_if_fail (preference_name != NULL, FALSE); 
  • trunk/libtinymailui-mozembed/mozilla-preferences.h

    r1172 r1862  
    2525G_BEGIN_DECLS 
    2626 
    27 gboolean mozilla_preference_set (const char *preference_name, const char *new_value); 
    28 gboolean mozilla_preference_set_boolean (const char *preference_name, gboolean new_boolean_value); 
    29 gboolean mozilla_preference_set_int (const char *preference_name, gint new_int_value); 
     27gboolean _mozilla_preference_set (const char *preference_name, const char *new_value); 
     28gboolean _mozilla_preference_set_boolean (const char *preference_name, gboolean new_boolean_value); 
     29gboolean _mozilla_preference_set_int (const char *preference_name, gint new_int_value); 
    3030 
    3131G_END_DECLS 
  • trunk/libtinymailui-mozembed/tny-moz-embed-html-mime-part-view.c

    r1858 r1862  
    194194        gtk_moz_embed_push_startup (); 
    195195 
    196         mozilla_preference_set_int ("permissions.default.image", 2); 
    197         mozilla_preference_set_int ("permissions.default.script", 2); 
    198         mozilla_preference_set_boolean ("security.checkloaduri", FALSE); 
    199         mozilla_preference_set ("general.useragent.misc", "Tinymail/" VERSION); 
    200         mozilla_preference_set ("network.proxy.no_proxies_on", "localhost"); 
     196        _mozilla_preference_set_int ("permissions.default.image", 2); 
     197        _mozilla_preference_set_int ("permissions.default.script", 2); 
     198        _mozilla_preference_set_boolean ("security.checkloaduri", FALSE); 
     199        _mozilla_preference_set ("general.useragent.misc", "Tinymail/" VERSION); 
     200        _mozilla_preference_set ("network.proxy.no_proxies_on", "localhost"); 
    201201 
    202202