Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
gtk
Commits
e6429d95
Commit
e6429d95
authored
Aug 02, 2004
by
Morten Welinder
Committed by
Morten Welinder
Aug 02, 2004
Browse files
C99ism.
2004-08-02 Morten Welinder <terra@gnome.org> * gtk/gtkentry.c (gtk_entry_motion_notify): C99ism.
parent
02bd687e
Changes
5
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
e6429d95
2004
-
08
-
02
Morten
Welinder
<
terra
@
gnome
.
org
>
*
gtk
/
gtkentry
.
c
(
gtk_entry_motion_notify
):
C99ism
.
Mon
Aug
2
01
:
30
:
03
2004
Matthias
Clasen
<
maclas
@
gmx
.
de
>
*
gtk
/
gtktextview
.[
hc
]:
...
...
ChangeLog.pre-2-10
View file @
e6429d95
2004
-
08
-
02
Morten
Welinder
<
terra
@
gnome
.
org
>
*
gtk
/
gtkentry
.
c
(
gtk_entry_motion_notify
):
C99ism
.
Mon
Aug
2
01
:
30
:
03
2004
Matthias
Clasen
<
maclas
@
gmx
.
de
>
*
gtk
/
gtktextview
.[
hc
]:
...
...
ChangeLog.pre-2-6
View file @
e6429d95
2004
-
08
-
02
Morten
Welinder
<
terra
@
gnome
.
org
>
*
gtk
/
gtkentry
.
c
(
gtk_entry_motion_notify
):
C99ism
.
Mon
Aug
2
01
:
30
:
03
2004
Matthias
Clasen
<
maclas
@
gmx
.
de
>
*
gtk
/
gtktextview
.[
hc
]:
...
...
ChangeLog.pre-2-8
View file @
e6429d95
2004
-
08
-
02
Morten
Welinder
<
terra
@
gnome
.
org
>
*
gtk
/
gtkentry
.
c
(
gtk_entry_motion_notify
):
C99ism
.
Mon
Aug
2
01
:
30
:
03
2004
Matthias
Clasen
<
maclas
@
gmx
.
de
>
*
gtk
/
gtktextview
.[
hc
]:
...
...
gtk/gtkentry.c
View file @
e6429d95
...
...
@@ -531,7 +531,7 @@ gtk_entry_class_init (GtkEntryClass *class)
TRUE
,
G_PARAM_READABLE
|
G_PARAM_WRITABLE
));
g_object_class_install_property
(
gobject_class
,
g_object_class_install_property
(
gobject_class
,
PROP_INVISIBLE_CHAR
,
g_param_spec_unichar
(
"invisible_char"
,
P_
(
"Invisible character"
),
...
...
@@ -1609,9 +1609,10 @@ gtk_entry_motion_notify (GtkWidget *widget,
{
GdkDragContext
*
context
;
GtkTargetList
*
target_list
=
gtk_target_list_new
(
NULL
,
0
);
gtk_target_list_add_text_targets
(
target_list
);
guint
actions
=
entry
->
editable
?
GDK_ACTION_COPY
|
GDK_ACTION_MOVE
:
GDK_ACTION_COPY
;
gtk_target_list_add_text_targets
(
target_list
);
context
=
gtk_drag_begin
(
widget
,
target_list
,
actions
,
entry
->
button
,
(
GdkEvent
*
)
event
);
...
...
Write
Preview
Supports
Markdown
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