summaryrefslogtreecommitdiff
path: root/thunar/thunar-view.c
diff options
context:
space:
mode:
authorBenedikt Meurer <benny@xfce.org>2005-11-22 20:40:14 +0000
committerBenedikt Meurer <benny@xfce.org>2005-11-22 20:40:14 +0000
commit55311a41fe9ddb782f2f633174c3fa67c79a397b (patch)
tree89e062a7291dab0e38bbbd43b270cbe0da266e83 /thunar/thunar-view.c
parentfb5899c98a52109ed33439e0ab19d39b231b2644 (diff)
downloadthunar-55311a41fe9ddb782f2f633174c3fa67c79a397b.tar.gz
2005-11-22 Benedikt Meurer <benny@xfce.org>
* thunar-vfs/*.{c,h}, thunar/*.c, thunarx/*.c: Avoid duplicating static strings if possible. * thunar-vfs/thunar-vfs-scandir.c(thunar_vfs_scandir_collect): Ignore EACCES and EPERM on subdirectories with recursive scanning. * thunar-vfs/thunar-vfs-info.h(ThunarVfsInfo): Compress "type", "mode" and "flags" to reduce memory overhead. (Old svn revision: 18929)
Diffstat (limited to 'thunar/thunar-view.c')
-rw-r--r--thunar/thunar-view.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/thunar/thunar-view.c b/thunar/thunar-view.c
index db85252f..17e556d5 100644
--- a/thunar/thunar-view.c
+++ b/thunar/thunar-view.c
@@ -49,10 +49,7 @@ thunar_view_get_type (void)
NULL,
};
- type = g_type_register_static (G_TYPE_INTERFACE,
- "ThunarView",
- &info, 0);
-
+ type = g_type_register_static (G_TYPE_INTERFACE, I_("ThunarView"), &info, 0);
g_type_interface_add_prerequisite (type, GTK_TYPE_WIDGET);
g_type_interface_add_prerequisite (type, THUNAR_TYPE_NAVIGATOR);
}