]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-cell-renderer-text.c
Updated Oriya Translation
[empathy.git] / libempathy-gtk / empathy-cell-renderer-text.c
index c31a013aa16a6fc01567549f8220b1012bda8d07..e3dd27d30cc861a1aececc434253792036e5b0a4 100644 (file)
@@ -14,9 +14,9 @@
  *
  * You should have received a copy of the GNU General Public
  * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- * 
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA  02110-1301  USA
+ *
  * Authors: Mikael Hallendal <micke@imendio.com>
  */
 
@@ -286,7 +286,7 @@ cell_renderer_text_update_text (EmpathyCellRendererText *cell,
 {
        EmpathyCellRendererTextPriv *priv;
        PangoAttrList              *attr_list;
-       PangoAttribute             *attr_color, *attr_style, *attr_size;
+       PangoAttribute             *attr_color, *attr_size;
        GtkStyle                   *style;
        gchar                      *str;
 
@@ -315,10 +315,10 @@ cell_renderer_text_update_text (EmpathyCellRendererText *cell,
 
        attr_list = pango_attr_list_new ();
 
-       attr_style = pango_attr_style_new (PANGO_STYLE_ITALIC);
-       attr_style->start_index = strlen (priv->name) + 1;
-       attr_style->end_index = -1;
-       pango_attr_list_insert (attr_list, attr_style);
+       attr_size = pango_attr_size_new (pango_font_description_get_size (style->font_desc) / 1.2);
+       attr_size->start_index = strlen (priv->name) + 1;
+       attr_size->end_index = -1;
+       pango_attr_list_insert (attr_list, attr_size);
 
        if (!selected) {
                GdkColor color;
@@ -326,17 +326,11 @@ cell_renderer_text_update_text (EmpathyCellRendererText *cell,
                color = style->text_aa[GTK_STATE_NORMAL];
 
                attr_color = pango_attr_foreground_new (color.red, color.green, color.blue);
-               attr_color->start_index = attr_style->start_index;
+               attr_color->start_index = attr_size->start_index;
                attr_color->end_index = -1;
                pango_attr_list_insert (attr_list, attr_color);
        }
 
-       attr_size = pango_attr_size_new (pango_font_description_get_size (style->font_desc) / 1.2);
-
-       attr_size->start_index = attr_style->start_index;
-       attr_size->end_index = -1;
-       pango_attr_list_insert (attr_list, attr_size);
-
        if (!priv->status || !priv->status[0] || !priv->show_status) {
                str = g_strdup (priv->name);
        } else {