Remove deprecated.
This commit is contained in:
parent
619a8f8377
commit
e1c8235fdb
2 changed files with 0 additions and 12 deletions
5
file.go
5
file.go
|
@ -26,11 +26,6 @@ func SelectFileMultiple(options ...Option) ([]string, error) {
|
||||||
return selectFileMultiple(applyOptions(options))
|
return selectFileMultiple(applyOptions(options))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Deprecated: use SelectFileMultiple.
|
|
||||||
func SelectFileMutiple(options ...Option) ([]string, error) {
|
|
||||||
return SelectFileMultiple(options...)
|
|
||||||
}
|
|
||||||
|
|
||||||
// SelectFileSave displays the save file selection dialog.
|
// SelectFileSave displays the save file selection dialog.
|
||||||
//
|
//
|
||||||
// Valid options: Title, WindowIcon, Attach, Modal, Filename,
|
// Valid options: Title, WindowIcon, Attach, Modal, Filename,
|
||||||
|
|
|
@ -182,13 +182,6 @@ func WindowIcon(icon any) Option {
|
||||||
return funcOption(func(o *options) { o.windowIcon = icon })
|
return funcOption(func(o *options) { o.windowIcon = icon })
|
||||||
}
|
}
|
||||||
|
|
||||||
// CustomIcon returns an Option to set a custom dialog icon.
|
|
||||||
//
|
|
||||||
// Deprecated: use Icon instead.
|
|
||||||
func CustomIcon(path string) Option {
|
|
||||||
return Icon(path)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Modal returns an Option to set the modal hint.
|
// Modal returns an Option to set the modal hint.
|
||||||
func Modal() Option {
|
func Modal() Option {
|
||||||
return funcOption(func(o *options) { o.modal = true })
|
return funcOption(func(o *options) { o.modal = true })
|
||||||
|
|
Loading…
Reference in a new issue