Commit 33c7105e authored by Jerome Leclanche's avatar Jerome Leclanche Committed by Alexandre Julliard

winemenubuilder: Add a trailing semicolon to MimeType in desktop files.

parent d6446c7a
...@@ -2135,7 +2135,7 @@ static BOOL write_freedesktop_association_entry(const char *desktopPath, const c ...@@ -2135,7 +2135,7 @@ static BOOL write_freedesktop_association_entry(const char *desktopPath, const c
fprintf(desktop, "[Desktop Entry]\n"); fprintf(desktop, "[Desktop Entry]\n");
fprintf(desktop, "Type=Application\n"); fprintf(desktop, "Type=Application\n");
fprintf(desktop, "Name=%s\n", friendlyAppName); fprintf(desktop, "Name=%s\n", friendlyAppName);
fprintf(desktop, "MimeType=%s\n", mimeType); fprintf(desktop, "MimeType=%s;\n", mimeType);
fprintf(desktop, "Exec=wine start /ProgIDOpen %s %%f\n", progId); fprintf(desktop, "Exec=wine start /ProgIDOpen %s %%f\n", progId);
fprintf(desktop, "NoDisplay=true\n"); fprintf(desktop, "NoDisplay=true\n");
fprintf(desktop, "StartupNotify=true\n"); fprintf(desktop, "StartupNotify=true\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment