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

This commit is contained in:
Jerome Leclanche 2010-12-13 17:17:17 +00:00 committed by Alexandre Julliard
parent d6446c7a97
commit 33c7105ecf
1 changed files with 1 additions and 1 deletions

View File

@ -2135,7 +2135,7 @@ static BOOL write_freedesktop_association_entry(const char *desktopPath, const c
fprintf(desktop, "[Desktop Entry]\n");
fprintf(desktop, "Type=Application\n");
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, "NoDisplay=true\n");
fprintf(desktop, "StartupNotify=true\n");