diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-12 16:09:09 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-12 18:42:50 -0500 |
commit | 37a8ee6e952fb8c837ffbabfe3a5068b08e75b13 (patch) | |
tree | d48dc51ab27f65571678687ef1d254f4caa85d32 /gtk/gtkdnd.h | |
parent | 74c48203f0a790ae6b6bb33cf7cf6ed2c3a4d3d5 (diff) | |
download | gtk+-37a8ee6e952fb8c837ffbabfe3a5068b08e75b13.tar.gz |
docs: fully break lines in examples
Try to do a better job of keeping example content
from being too wide. It is often rendered as <pre>
text so the only time we can wrap it is in the source.
It is best to full break lines at all punctuation and
to try to keep the width under 70 chars or so.
Diffstat (limited to 'gtk/gtkdnd.h')
-rw-r--r-- | gtk/gtkdnd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkdnd.h b/gtk/gtkdnd.h index c7060da857..de328dbccf 100644 --- a/gtk/gtkdnd.h +++ b/gtk/gtkdnd.h @@ -60,9 +60,9 @@ G_BEGIN_DECLS * of the user for a drag destination site. */ typedef enum { - GTK_DEST_DEFAULT_MOTION = 1 << 0, /* respond to "drag_motion" */ - GTK_DEST_DEFAULT_HIGHLIGHT = 1 << 1, /* auto-highlight */ - GTK_DEST_DEFAULT_DROP = 1 << 2, /* respond to "drag_drop" */ + GTK_DEST_DEFAULT_MOTION = 1 << 0, + GTK_DEST_DEFAULT_HIGHLIGHT = 1 << 1, + GTK_DEST_DEFAULT_DROP = 1 << 2, GTK_DEST_DEFAULT_ALL = 0x07 } GtkDestDefaults; |