Ticket #4150: patch-mtypes.c

File patch-mtypes.c, 1.6 KB (added by mellon85@…, 19 years ago)

Second Patch file (mtypes.c)

Line 
1--- src/mtypes.c        Sat Jul  3 08:19:20 2004
2+++ src/mtypes.c        Thu Oct  7 05:06:01 2004
3@@ -125,8 +125,7 @@
4   //////////////////////////////////////////////////////////////
5   mtype = &MType[MEDIA_MP3];
6   
7-  mtype->app = g_list_append(mtype->app, app_new("xmms %f", "Open"));
8-  mtype->app = g_list_append(mtype->app, app_new("xmms -e %f", "Enqueue"));
9+  mtype->app = g_list_append(mtype->app, app_new("open '%f'", "Open"));
10   mtype->suffix = 
11     g_list_append(mtype->suffix, suffix_new("mp3"));
12 #ifdef HAVE_OGG
13@@ -137,7 +136,7 @@
14   //////////////////////////////////////////////////////////////
15   mtype = &MType[MEDIA_VIDEO];
16   
17-  mtype->app = g_list_append(mtype->app, app_new("mplayer %f", "MPlayer"));
18+  mtype->app = g_list_append(mtype->app, app_new("open '%f'", "Open"));
19   mtype->suffix = 
20     g_list_append(mtype->suffix, suffix_new("mpg mpeg"));
21   mtype->suffix = 
22@@ -150,7 +149,7 @@
23   //////////////////////////////////////////////////////////////
24   mtype = &MType[MEDIA_IMAGE];
25   
26-  mtype->app = g_list_append(mtype->app, app_new("ee %f", "Electric eyes"));
27+  mtype->app = g_list_append(mtype->app, app_new("open '%f'", "Open"));
28   mtype->suffix = 
29     g_list_append(mtype->suffix, suffix_new("jpg jpeg"));
30   mtype->suffix = 
31@@ -163,8 +162,7 @@
32   //////////////////////////////////////////////////////////////
33   mtype = &MType[MEDIA_FOLDER];
34   
35-  mtype->app = g_list_append(mtype->app, app_new("gmc %f", "Browse"));
36-  mtype->app = g_list_append(mtype->app, app_new("xmms %f", "Xmms"));
37+  mtype->app = g_list_append(mtype->app, app_new("open `dirname '%f'`", "Browse"));
38 }
39 */