summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXDialog.c
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 /macosx/tkMacOSXDialog.c
parent39dd1134f379cf247b40c74d68ea6bec62edb33e (diff)
downloadtk-900ca0d4015ef35172971ffe2cbc49f8205f42e3.zip
tk-900ca0d4015ef35172971ffe2cbc49f8205f42e3.tar.gz
tk-900ca0d4015ef35172971ffe2cbc49f8205f42e3.tar.bz2
unnecessary Tcl_DStringInit(), since Tcl_WinUtfToTChar() already does that.
Diffstat (limited to 'macosx/tkMacOSXDialog.c')
-rw-r--r--macosx/tkMacOSXDialog.c6
1 files changed, 3 insertions, 3 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];
}