summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooser.h
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2020-02-22 14:54:48 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2020-02-22 15:22:06 +0000
commit4a3742979dc84b06d46749678e6c9b0f7fdbac0c (patch)
tree76d304b5e7645d7c5dc2206f18583a09f6759cb3 /gtk/gtkfilechooser.h
parentb09e7df81b433309374bd489e26fcd011dda988e (diff)
downloadgtk+-4a3742979dc84b06d46749678e6c9b0f7fdbac0c.tar.gz
Remove GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER
We don't need a whole separate action, now that the file chooser widget can create folders; we can create use SELECT_FOLDER and create one.
Diffstat (limited to 'gtk/gtkfilechooser.h')
-rw-r--r--gtk/gtkfilechooser.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/gtk/gtkfilechooser.h b/gtk/gtkfilechooser.h
index c641cba86c..dccef32ca0 100644
--- a/gtk/gtkfilechooser.h
+++ b/gtk/gtkfilechooser.h
@@ -44,9 +44,6 @@ typedef struct _GtkFileChooser GtkFileChooser;
* @GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER: Indicates an Open mode for
* selecting folders. The file chooser will let the user pick an
* existing folder.
- * @GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER: Indicates a mode for creating a
- * new folder. The file chooser will let the user name an existing or
- * new folder.
*
* Describes whether a #GtkFileChooser is being used to open existing files
* or to save to a possibly new file.
@@ -55,8 +52,7 @@ typedef enum
{
GTK_FILE_CHOOSER_ACTION_OPEN,
GTK_FILE_CHOOSER_ACTION_SAVE,
- GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
- GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER
+ GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER
} GtkFileChooserAction;
GDK_AVAILABLE_IN_ALL