diff options
author | Camil Staps | 2019-12-12 14:59:47 +0100 |
---|---|---|
committer | Camil Staps | 2019-12-12 14:59:47 +0100 |
commit | fc5d54decf344a3104a6c46641b93ea2f7319a62 (patch) | |
tree | 852f1deb80f69b2be6686c350f3ca052867cc19b /src/Gtk/Widgets.dcl | |
parent | Add G flag to ccall of gtk_sheet_moveto, to be sure (diff) |
Add GtkSortable for TreeView columns
Diffstat (limited to 'src/Gtk/Widgets.dcl')
-rw-r--r-- | src/Gtk/Widgets.dcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Gtk/Widgets.dcl b/src/Gtk/Widgets.dcl index a9cb44c..27d5677 100644 --- a/src/Gtk/Widgets.dcl +++ b/src/Gtk/Widgets.dcl @@ -29,8 +29,8 @@ from Gtk.Types import :: GtkLineSpacingModifier, :: GtkMargins, :: GtkMarkup, :: GtkMessageType, :: GtkModal, :: GtkOrientation, :: GtkPanedHandleWidth, :: GtkResize, :: GtkResponse, :: GtkScrollbarPolicy, :: GtkSensitivity, :: GtkShrink, - :: GtkSizeRequest, :: GtkSpacing, :: GtkStylePriority, :: GtkText, - :: GtkTitle, :: GtkWrapMode + :: GtkSizeRequest, :: GtkSortable, :: GtkSpacing, :: GtkStylePriority, + :: GtkText, :: GtkTitle, :: GtkWrapMode /** * A `GtkAccelGroup` is needed for a `GtkAccelerator`. 'Accelerator' is Gtk's @@ -365,7 +365,7 @@ newTreeView :: !GtkListStore -> GtkM GtkTreeView * the column index in the list store that is shown. When `Expand` is used, * excess space of the tree view is (partially) given to this column. */ -appendColumnToTreeView :: !String !Int !GtkExpand !GtkTreeView -> GtkM GtkTreeView +appendColumnToTreeView :: !String !Int !GtkSortable !GtkExpand !GtkTreeView -> GtkM GtkTreeView //* Add a signal handler for the event that the user selects a different row. addSelectionChangedHandler :: !(GtkM ()) !GtkTreeView -> GtkM GtkTreeView |