Remove deprecated.

This commit is contained in:
Nuno Cruces 2022-12-02 15:14:57 +00:00
parent 619a8f8377
commit e1c8235fdb
2 changed files with 0 additions and 12 deletions

View file

@ -26,11 +26,6 @@ func SelectFileMultiple(options ...Option) ([]string, error) {
return selectFileMultiple(applyOptions(options))
}
// Deprecated: use SelectFileMultiple.
func SelectFileMutiple(options ...Option) ([]string, error) {
return SelectFileMultiple(options...)
}
// SelectFileSave displays the save file selection dialog.
//
// Valid options: Title, WindowIcon, Attach, Modal, Filename,

View file

@ -182,13 +182,6 @@ func WindowIcon(icon any) Option {
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.
func Modal() Option {
return funcOption(func(o *options) { o.modal = true })