Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
39ec0314
Commit
39ec0314
authored
Jun 04, 2014
by
Dmitry Antipov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lwlib-widget.h (widget_value) [USE_X_TOOLKIT]: Use X toolkit
fields conditionally.
parent
6348c9d7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
7 deletions
+15
-7
lwlib/ChangeLog
lwlib/ChangeLog
+5
-0
lwlib/lwlib-widget.h
lwlib/lwlib-widget.h
+10
-7
No files found.
lwlib/ChangeLog
View file @
39ec0314
2014-06-04 Dmitry Antipov <dmantipov@yandex.ru>
* lwlib-widget.h (widget_value) [USE_X_TOOLKIT]: Use X toolkit
fields conditionally.
2014-06-03 Paul Eggert <eggert@cs.ucla.edu>
Do not require libXt-devel when building with gtk.
...
...
lwlib/lwlib-widget.h
View file @
39ec0314
...
...
@@ -73,13 +73,6 @@ typedef struct _widget_value
/* The type of a button. */
enum
button_type
button_type
;
/* Type of change (maintained by lw library). */
change_type
change
;
/* Type of this widget's change, but not counting the other widgets
found in the `next' field. */
change_type
this_one_change
;
/* Contents of the sub-widgets, also selected slot for checkbox. */
struct
_widget_value
*
contents
;
...
...
@@ -89,12 +82,22 @@ typedef struct _widget_value
/* Next one in the list. */
struct
_widget_value
*
next
;
#ifdef USE_X_TOOLKIT
/* Type of change (maintained by lw library). */
change_type
change
;
/* Type of this widget's change, but not counting the other widgets
found in the `next' field. */
change_type
this_one_change
;
/* Slot for the toolkit dependent part. Always initialize to NULL. */
void
*
toolkit_data
;
/* Whether we should free the toolkit data slot when freeing the
widget_value itself. */
bool
free_toolkit_data
;
#endif
}
widget_value
;
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment