Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
G
gtk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dorota Czaplejewicz
gtk
Commits
9b593427
Commit
9b593427
authored
Nov 17, 2005
by
Matthias Clasen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
const correctness fixes
found by Arjan van de Ven and gcc.
parent
81be0b43
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
26 additions
and
5 deletions
+26
-5
ChangeLog
ChangeLog
+5
-0
ChangeLog.pre-2-10
ChangeLog.pre-2-10
+5
-0
contrib/gdk-pixbuf-xlib/ChangeLog
contrib/gdk-pixbuf-xlib/ChangeLog
+6
-0
contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlib-drawable.c
contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlib-drawable.c
+2
-2
contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.c
contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.c
+1
-1
modules/engines/pixbuf/ChangeLog
modules/engines/pixbuf/ChangeLog
+5
-0
modules/engines/pixbuf/pixbuf-rc-style.c
modules/engines/pixbuf/pixbuf-rc-style.c
+1
-1
perf/treeview.c
perf/treeview.c
+1
-1
No files found.
ChangeLog
View file @
9b593427
2005-11-17 Matthias Clasen <mclasen@redhat.com>
* perf/treeview.c: const correctness fixes
found by Arjan van de Ven and gcc.
2005-11-16 Michael Natterer <mitch@imendio.com>
* gtk/gtkimage.c (animation_timeout): call
...
...
ChangeLog.pre-2-10
View file @
9b593427
2005-11-17 Matthias Clasen <mclasen@redhat.com>
* perf/treeview.c: const correctness fixes
found by Arjan van de Ven and gcc.
2005-11-16 Michael Natterer <mitch@imendio.com>
* gtk/gtkimage.c (animation_timeout): call
...
...
contrib/gdk-pixbuf-xlib/ChangeLog
View file @
9b593427
2005-11-17 Matthias Clasen <mclasen@redhat.com>
* gdk-pixbuf-xlib-drawable.c:
* gdk-pixbuf-xlibrgb.c: const correctness fixes
found by Arjan van de Ven and gcc.
2005-10-05 Matthias Clasen <mclasen@redhat.com>
* gdk-pixbuf-xlib-2.0.pc.in (Requires): Require
...
...
contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlib-drawable.c
View file @
9b593427
...
...
@@ -41,7 +41,7 @@
static
guint32
mask_table
[]
=
{
static
const
guint32
mask_table
[]
=
{
0x00000000
,
0x00000001
,
0x00000003
,
0x00000007
,
0x0000000f
,
0x0000001f
,
0x0000003f
,
0x0000007f
,
0x000000ff
,
0x000001ff
,
0x000003ff
,
0x000007ff
,
...
...
@@ -1058,7 +1058,7 @@ convert_real_slow (XImage *image, guchar *pixels, int rowstride, xlib_colormap *
typedef
void
(
*
cfunc
)
(
XImage
*
image
,
guchar
*
pixels
,
int
rowstride
,
xlib_colormap
*
cmap
);
static
cfunc
convert_map
[]
=
{
static
c
onst
c
func
convert_map
[]
=
{
rgb1
,
rgb1
,
rgb1a
,
rgb1a
,
rgb8
,
rgb8
,
rgb8a
,
rgb8a
,
rgb555lsb
,
rgb555msb
,
rgb555alsb
,
rgb555amsb
,
...
...
contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.c
View file @
9b593427
...
...
@@ -516,7 +516,7 @@ static guint32
xlib_rgb_score_visual
(
XVisualInfo
*
visual
)
{
guint32
quality
,
speed
,
pseudo
,
sys
;
static
const
char
*
visual_names
[]
=
static
const
char
*
const
visual_names
[]
=
{
"static gray"
,
"grayscale"
,
...
...
modules/engines/pixbuf/ChangeLog
View file @
9b593427
2005-11-17 Matthias Clasen <mclasen@redhat.com>
* pixbuf-rc-style.c: const correctness fixes
found by Arjan van de Ven and gcc.
2005-08-24 Matthias Clasen <mclasen@redhat.com>
* === Released 2.8.2 ===
...
...
modules/engines/pixbuf/pixbuf-rc-style.c
View file @
9b593427
...
...
@@ -36,7 +36,7 @@ static GtkStyle *pixbuf_rc_style_create_style (GtkRcStyle *rc_style);
static
void
theme_image_unref
(
ThemeImage
*
data
);
static
struct
static
const
struct
{
gchar
*
name
;
guint
token
;
...
...
perf/treeview.c
View file @
9b593427
...
...
@@ -7,7 +7,7 @@ struct row_data {
char
*
text2
;
};
static
struct
row_data
row_data
[]
=
{
static
const
struct
row_data
row_data
[]
=
{
{
GTK_STOCK_NEW
,
"First"
,
"Here bygynneth the Book of the tales of Caunterbury."
},
{
GTK_STOCK_OPEN
,
"Second"
,
"Whan that Aprille, with hise shoures soote,"
},
{
GTK_STOCK_ABOUT
,
"Third"
,
"The droghte of March hath perced to the roote"
},
...
...
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