removed calls to "get_state" because that function appears to have been

* plug-ins/perl/examples/innerbevel: removed calls to "get_state"
	because that function appears to have been deprecated into
	nonexistence in Gimp::Fu....
This commit is contained in:
Kelly Martin
2000-01-06 17:32:19 +00:00
parent a60cd2f202
commit bfc993e1e9
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2000-01-06 Kelly Lynn Martin <kelly@poverty.bloomington.in.us>
* plug-ins/perl/examples/innerbevel: removed calls to "get_state"
because that function appears to have been deprecated into
nonexistence in Gimp::Fu....
Thu Jan 6 18:39:05 GMT 2000 Adam D. Moss <adam@gimp.org>
* app/tile_cache.c

View File

@ -46,7 +46,7 @@ register $regname, $shortdesc, $longdesc, $authorname, $author, $date, $path, $i
my ($font, $text, $color1, $color2, $azimuth, $elevation, $depth, $maptype) = @_;
# -- step 1 --
$oldst = get_state();
#$oldst = get_state(); # function no longer exists -- klm 20.01.06
gimp_palette_set_background($color1);
gimp_palette_set_foreground($color2);
@ -91,7 +91,7 @@ $layer2->translate(2, 3);
$img->add_new_layer(2);
$img->gimp_selection_none();
set_state($oldst); # Doesn't seem to work - says it can't grok color
#set_state($oldst); # function no longer exists -- klm 20.01.06
return();
};