Sfoglia il codice sorgente

Add missing spaces on vista. (Fixes issue 1673)


git-svn-id: http://svn.dmdirc.com/trunk@4581 00569f92-eb28-0410-84fd-f71c24880f
tags/0.6
Shane Mc Cormack 16 anni fa
parent
commit
7f00dcbb21
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 3
    3
      installer/windows/Uninstaller.dpr

+ 3
- 3
installer/windows/Uninstaller.dpr Vedi File

49
 begin
49
 begin
50
 	if addFooter then begin
50
 	if addFooter then begin
51
 		ErrorMessage := ErrorMessage+#13#10;
51
 		ErrorMessage := ErrorMessage+#13#10;
52
-		ErrorMessage := ErrorMessage+#13#10+'If you feel this is incorrect, or you require some further assistance,';
52
+		ErrorMessage := ErrorMessage+#13#10+' If you feel this is incorrect, or you require some further assistance, ';
53
 		ErrorMessage := ErrorMessage+#13#10+'please feel free to contact us.';
53
 		ErrorMessage := ErrorMessage+#13#10+'please feel free to contact us.';
54
 	end;
54
 	end;
55
 	
55
 	
200
 		Reg.Free;
200
 		Reg.Free;
201
 		
201
 		
202
 		if (FileExists(profileDir+'\dmdirc.config')) then begin
202
 		if (FileExists(profileDir+'\dmdirc.config')) then begin
203
-			if MessageBox(0, PChar('A dmdirc profile has been detected ('+profileDir+')'+#13#10+' Do you want to delete it aswell?'), 'DMDirc Uninstaller', MB_YESNO) = IDYES then begin
203
+			if MessageBox(0, PChar('A dmdirc profile has been detected ('+profileDir+') '+#13#10+'Do you want to delete it aswell?'), 'DMDirc Uninstaller', MB_YESNO) = IDYES then begin
204
 				KillDir(profileDir);
204
 				KillDir(profileDir);
205
 			end;
205
 			end;
206
 		end;
206
 		end;
207
 		
207
 		
208
 		showmessage('DMDirc has been uninstalled from "'+InstallDir+'".', 'Uninstall Successful');
208
 		showmessage('DMDirc has been uninstalled from "'+InstallDir+'".', 'Uninstall Successful');
209
 	end
209
 	end
210
-	else if askQuestion('This will uninstall DMDirc.'+#13#10+#13#10+'Do you want to continue?') then begin
210
+	else if askQuestion('This will uninstall DMDirc. '+#13#10+#13#10+'Do you want to continue?') then begin
211
 		if (ExecAndWait('java -jar ' + ExtractFileDir(paramstr(0)) + '\DMDirc.jar -k', true) <> 0) then begin
211
 		if (ExecAndWait('java -jar ' + ExtractFileDir(paramstr(0)) + '\DMDirc.jar -k', true) <> 0) then begin
212
 			TempDir := GetTempDirectory;
212
 			TempDir := GetTempDirectory;
213
 			CopyFile(pchar(paramstr(0)), pchar(TempDir+'/uninstall.exe'), false);
213
 			CopyFile(pchar(paramstr(0)), pchar(TempDir+'/uninstall.exe'), false);

Loading…
Annulla
Salva