diff options
author | andreask <andreask> | 2012-08-30 17:54:43 (GMT) |
---|---|---|
committer | andreask <andreask> | 2012-08-30 17:54:43 (GMT) |
commit | ef16e014904e7f57528c142a49cbadcadabeb062 (patch) | |
tree | 90159d08145fe78d12c35e77c7e41ddad1438e47 /win/tkWinDialog.c | |
parent | 325d621602bb21c8eb57bb761ab637fda525fd61 (diff) | |
download | tk-ef16e014904e7f57528c142a49cbadcadabeb062.zip tk-ef16e014904e7f57528c142a49cbadcadabeb062.tar.gz tk-ef16e014904e7f57528c142a49cbadcadabeb062.tar.bz2 |
Unbreak windows problems with commit [961ae24a3f] as well.
Diffstat (limited to 'win/tkWinDialog.c')
-rw-r--r-- | win/tkWinDialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tkWinDialog.c b/win/tkWinDialog.c index c64df72..9263830 100644 --- a/win/tkWinDialog.c +++ b/win/tkWinDialog.c @@ -1604,8 +1604,8 @@ ChooseDirectoryValidateProc( * User HAS to select a valid directory. */ - wsprintf(selDir, TEXT("Directory '%s' does not exist,\n" - "please select or enter an existing directory."), + wsprintf(selDir, TEXT("Directory '%s' does not exist,\n") + TEXT("please select or enter an existing directory."), chooseDirSharedData->retDir); MessageBox(NULL, selDir, NULL, MB_ICONEXCLAMATION|MB_OK); chooseDirSharedData->retDir[0] = '\0'; |