@@ -128,9 +128,9 @@ static guint signals[LAST_SIGNAL] = { 0 };
128128static GHashTable * symbolic_links ;
129129
130130static GQuark attribute_name_q ,
131- attribute_ext_q ,
132131 attribute_size_q ,
133132 attribute_type_q ,
133+ attribute_ext_q ,
134134 attribute_detailed_type_q ,
135135 attribute_modification_date_q ,
136136 attribute_date_modified_q ,
@@ -3378,7 +3378,7 @@ nemo_file_compare_for_sort (NemoFile *file_1,
33783378 if (result == 0 ) {
33793379 result = compare_by_display_name (file_1 , file_2 );
33803380 }
3381- break ;
3381+ break ;
33823382 case NEMO_FILE_SORT_BY_SIZE :
33833383 /* Compare directory sizes ourselves, then if necessary
33843384 * use GnomeVFS to compare file sizes.
@@ -3474,7 +3474,7 @@ nemo_file_compare_for_sort_by_attribute_q (NemoFile *file_1,
34743474 directories_first ,
34753475 favorites_first ,
34763476 reversed ,
3477- search_dir );
3477+ search_dir );
34783478 } else if (attribute == attribute_size_q ) {
34793479 return nemo_file_compare_for_sort (file_1 , file_2 ,
34803480 NEMO_FILE_SORT_BY_SIZE ,
@@ -4131,7 +4131,7 @@ nemo_file_get_display_name (NemoFile *file)
41314131char *
41324132nemo_file_get_extension_name (NemoFile * file )
41334133{
4134- return g_strdup ( nemo_file_peek_extension_name (file ) );
4134+ return nemo_file_peek_extension_name (file );
41354135}
41364136
41374137char *
@@ -8960,9 +8960,9 @@ nemo_file_class_init (NemoFileClass *class)
89608960 nemo_file_info_getter = nemo_file_get_internal ;
89618961
89628962 attribute_name_q = g_quark_from_static_string ("name" );
8963- attribute_ext_q = g_quark_from_static_string ("extension" );
89648963 attribute_size_q = g_quark_from_static_string ("size" );
89658964 attribute_type_q = g_quark_from_static_string ("type" );
8965+ attribute_ext_q = g_quark_from_static_string ("extension" );
89668966 attribute_detailed_type_q = g_quark_from_static_string ("detailed_type" );
89678967 attribute_modification_date_q = g_quark_from_static_string ("modification_date" );
89688968 attribute_date_modified_q = g_quark_from_static_string ("date_modified" );
0 commit comments