Use the short prefix "IA__" for aliases instead of the long suffix
2004-09-09 Matthias Clasen <mclasen@redhat.com> * gtk/makegtkalias.pl: * gdk/makegdkalias.pl: Use the short prefix "IA__" for aliases instead of the long suffix "__internal_alias".
This commit is contained in:
committed by
Matthias Clasen
parent
beb69e8c57
commit
d04d99e947
@ -1,5 +1,9 @@
|
|||||||
2004-09-09 Matthias Clasen <mclasen@redhat.com>
|
2004-09-09 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/makegtkalias.pl:
|
||||||
|
* gdk/makegdkalias.pl: Use the short prefix "IA__" for
|
||||||
|
aliases instead of the long suffix "__internal_alias".
|
||||||
|
|
||||||
* tests/testfilechooser.c (main): Update sensitivity of the "Select all"
|
* tests/testfilechooser.c (main): Update sensitivity of the "Select all"
|
||||||
button.
|
button.
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,9 @@
|
|||||||
2004-09-09 Matthias Clasen <mclasen@redhat.com>
|
2004-09-09 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/makegtkalias.pl:
|
||||||
|
* gdk/makegdkalias.pl: Use the short prefix "IA__" for
|
||||||
|
aliases instead of the long suffix "__internal_alias".
|
||||||
|
|
||||||
* tests/testfilechooser.c (main): Update sensitivity of the "Select all"
|
* tests/testfilechooser.c (main): Update sensitivity of the "Select all"
|
||||||
button.
|
button.
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,9 @@
|
|||||||
2004-09-09 Matthias Clasen <mclasen@redhat.com>
|
2004-09-09 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/makegtkalias.pl:
|
||||||
|
* gdk/makegdkalias.pl: Use the short prefix "IA__" for
|
||||||
|
aliases instead of the long suffix "__internal_alias".
|
||||||
|
|
||||||
* tests/testfilechooser.c (main): Update sensitivity of the "Select all"
|
* tests/testfilechooser.c (main): Update sensitivity of the "Select all"
|
||||||
button.
|
button.
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,9 @@
|
|||||||
2004-09-09 Matthias Clasen <mclasen@redhat.com>
|
2004-09-09 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/makegtkalias.pl:
|
||||||
|
* gdk/makegdkalias.pl: Use the short prefix "IA__" for
|
||||||
|
aliases instead of the long suffix "__internal_alias".
|
||||||
|
|
||||||
* tests/testfilechooser.c (main): Update sensitivity of the "Select all"
|
* tests/testfilechooser.c (main): Update sensitivity of the "Select all"
|
||||||
button.
|
button.
|
||||||
|
|
||||||
|
|||||||
@ -1,3 +1,8 @@
|
|||||||
|
2004-09-09 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* makegdkpixbufalias.pl: Use the short prefix "IA__" for
|
||||||
|
aliases instead of the long suffix "__internal_alias".
|
||||||
|
|
||||||
2004-09-01 Matthias Clasen <mclasen@redhat.com>
|
2004-09-01 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* gdk-pixbuf-core.h: Align argument names with source.
|
* gdk-pixbuf-core.h: Align argument names with source.
|
||||||
|
|||||||
@ -76,7 +76,7 @@ while (<>) {
|
|||||||
|
|
||||||
my $str = $_;
|
my $str = $_;
|
||||||
chomp($str);
|
chomp($str);
|
||||||
my $alias = $str."__internal_alias";
|
my $alias = "IA__".$str;
|
||||||
|
|
||||||
print <<EOF
|
print <<EOF
|
||||||
extern __typeof ($str) $alias __attribute((visibility("hidden")));
|
extern __typeof ($str) $alias __attribute((visibility("hidden")));
|
||||||
|
|||||||
@ -94,7 +94,7 @@ while (<>) {
|
|||||||
|
|
||||||
my $str = $_;
|
my $str = $_;
|
||||||
chomp($str);
|
chomp($str);
|
||||||
my $alias = $str."__internal_alias";
|
my $alias = "IA__".$str;
|
||||||
|
|
||||||
print <<EOF
|
print <<EOF
|
||||||
extern __typeof ($str) $alias __attribute((visibility("hidden")));
|
extern __typeof ($str) $alias __attribute((visibility("hidden")));
|
||||||
|
|||||||
@ -104,7 +104,7 @@ while (<>) {
|
|||||||
|
|
||||||
my $str = $_;
|
my $str = $_;
|
||||||
chomp($str);
|
chomp($str);
|
||||||
my $alias = $str."__internal_alias";
|
my $alias = "IA__".$str;
|
||||||
|
|
||||||
print <<EOF
|
print <<EOF
|
||||||
extern __typeof ($str) $alias __attribute((visibility("hidden")));
|
extern __typeof ($str) $alias __attribute((visibility("hidden")));
|
||||||
|
|||||||
Reference in New Issue
Block a user