diff options
Diffstat (limited to 'app/gtk_dnd_util.h')
-rw-r--r-- | app/gtk_dnd_util.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/gtk_dnd_util.h b/app/gtk_dnd_util.h index 7365cec..4b6155e 100644 --- a/app/gtk_dnd_util.h +++ b/app/gtk_dnd_util.h @@ -27,7 +27,11 @@ class GtkDndUtil { TEXT_URI_LIST = 1 << 5, TEXT_HTML = 1 << 6, - INVALID_TARGET = 1 << 7, + // Other types. NETSCAPE_URL is provided for compatibility with other + // apps. + NETSCAPE_URL = 1 << 7, + + INVALID_TARGET = 1 << 8, }; // Get the atom for a given target (of the above enum type). Will return NULL |