オープンソース・ソフトウェアの開発とダウンロード

Subversion リポジトリの参照

Diff of /trunk/installer/teraterm.iss

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3651 by maya, Sun Oct 18 16:15:17 2009 UTC revision 3652 by maya, Mon Oct 19 12:14:42 2009 UTC
# Line 442  en.comp_TTXRecurringCommand=Recurring Co Line 442  en.comp_TTXRecurringCommand=Recurring Co
442  ja.comp_TTXRecurringCommand=定期的に文字列を送信する  ja.comp_TTXRecurringCommand=定期的に文字列を送信する
443    
444  [Code]  [Code]
445    const
446      SHCNF_IDLIST = $0000;
447      SHCNE_ASSOCCHANGED = $08000000;
448    
449    procedure SHChangeNotify(wEventId, uFlags, dwItem1, dwItem2: Integer);
450    external 'SHChangeNotify@shell32.dll stdcall';
451    
452  var  var
453    UILangFilePage: TInputOptionWizardPage;    UILangFilePage: TInputOptionWizardPage;
454    
# Line 772  begin Line 779  begin
779            RegDeleteValue(HKEY_CLASSES_ROOT, 'telnet\shell', '');            RegDeleteValue(HKEY_CLASSES_ROOT, 'telnet\shell', '');
780          end;          end;
781    
782          SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, 0, 0);
783          
784        end; // ssDone        end; // ssDone
785     end; // case CurStep of     end; // case CurStep of
786  end; // CurStepChanged  end; // CurStepChanged
# Line 827  begin Line 836  begin
836              RegDeleteKeyIfEmpty(HKEY_CURRENT_USER, 'Software\ShinpeiTools');              RegDeleteKeyIfEmpty(HKEY_CURRENT_USER, 'Software\ShinpeiTools');
837            end;            end;
838          end;          end;
839            
840            SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, 0, 0);
841            
842          // directory is deleted only if empty          // directory is deleted only if empty
843          RemoveDir(app);          RemoveDir(app);
844        end;        end;

Legend:
Removed from v.3651  
changed lines
  Added in v.3652

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26