From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,d50803f457a25d9,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed00.sul.t-online.de!newsmm00.sul.t-online.de!t-online.de!news.t-online.com!not-for-mail From: Oliver Doerler Newsgroups: comp.lang.ada Subject: GtkAda Problem Date: Sat, 17 Jul 2004 18:05:38 +0200 Organization: T-Online Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: news.t-online.com 1090080369 07 11228 f6Z6X-B6UnZrSbMM 040717 16:06:09 X-Complaints-To: usenet-abuse@t-online.de X-ID: reKfUEZeoeihOvuxBBaF6Rpaq1-Dv8bXglDE5BiYY+mGmSx4eloewb User-Agent: Mozilla Thunderbird 0.7.2 (Windows/20040707) X-Accept-Language: en-us, en Xref: g2news1.google.com comp.lang.ada:2207 Date: 2004-07-17T18:05:38+02:00 List-Id: Hi! Problem with GtkAda in Gtk.Main... Def. from http://libre.act-europe.fr/GtkAda/docs/gtkada_rm_102.html#SEC444 --------------------------------- type Idle_Callback is access function return Boolean; function Timeout_Add (Interval : in Guint32; Func : Timeout_Callback) return Timeout_Handler_Id; --------------------------------- My Code: --------------------------------- function fidle return boolean is begin Gtk.Fixed.Move (Container, Lkw, 40, 40); return true; end fidle; fidle_id := Gtk.Main.Idle_Add (fidle'access); ---------------------------------- gnatmake Message: =>subprogram must not be deeper than access type I can't see my misstake... help?! :) Thanks! Oliver Doerler