summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-05-09 13:50:24 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-05-09 13:50:24 (GMT)
commit900ca0d4015ef35172971ffe2cbc49f8205f42e3 (patch)
tree7f8f8bb868b76f2eeb1b872ac6b0478e5f0a7d36
parent39dd1134f379cf247b40c74d68ea6bec62edb33e (diff)
downloadtk-900ca0d4015ef35172971ffe2cbc49f8205f42e3.zip
tk-900ca0d4015ef35172971ffe2cbc49f8205f42e3.tar.gz
tk-900ca0d4015ef35172971ffe2cbc49f8205f42e3.tar.bz2
unnecessary Tcl_DStringInit(), since Tcl_WinUtfToTChar() already does that.
-rw-r--r--macosx/tkMacOSXDialog.c6
-rw-r--r--win/tkWinSend.c1
2 files changed, 3 insertions, 4 deletions
diff --git a/macosx/tkMacOSXDialog.c b/macosx/tkMacOSXDialog.c
index ca55c60..42cd1e5 100644
--- a/macosx/tkMacOSXDialog.c
+++ b/macosx/tkMacOSXDialog.c
@@ -755,15 +755,15 @@ Tk_GetSaveFileObjCmd(
[label setBordered:NO];
[label setBezeled:NO];
[label setDrawsBackground:NO];
-
+
NSPopUpButton *popupButton = [[NSPopUpButton alloc] initWithFrame:NSMakeRect(50.0, 2, 140, 22.0) pullsDown:NO];
[popupButton addItemsWithTitles:saveFileTypes];
[popupButton setAction:@selector(saveFormat:)];
-
+
[accessoryView addSubview:label];
[accessoryView addSubview:popupButton];
[savepanel setAllowedFileTypes:saveFileTypes];
-
+
[savepanel setAccessoryView:accessoryView];
[savepanel setAllowsOtherFileTypes:YES];
}
diff --git a/win/tkWinSend.c b/win/tkWinSend.c
index c999c0b..fca8561 100644
--- a/win/tkWinSend.c
+++ b/win/tkWinSend.c
@@ -619,7 +619,6 @@ BuildMoniker(
LPMONIKER pmkItem = NULL;
Tcl_DString dString;
- Tcl_DStringInit(&dString);
Tcl_WinUtfToTChar(name, -1, &dString);
hr = CreateFileMoniker((LPOLESTR)Tcl_DStringValue(&dString), &pmkItem);
Tcl_DStringFree(&dString);