Date: Thu, 15 Dec 2005 22:56:22 +0900 (JST) Message-Id: <20051215.225622.95506504.garrigue at math.nagoya-u.ac.jp> To: robertr at rftp.com Cc: lablgtk at math.nagoya-u.ac.jp Subject: Re: Question about class ui_manager? From: Jacques Garrigue In-Reply-To: <43A165E2.1020806 at rftp.com> References: <43A165E2.1020806 at rftp.com> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit From: Robert Roessler > I am trying to use the method "add_ui" in the ui_manager class to add > a separator element. > > It looks to me like the "name" parameter should be handled like the > action parameter - they both should be of type "string option", > allowing the name to not be present as is already allowed by the action. In the documentation, action can be NULL, but nothing is said about name. If you look the source code, you will see that the function starts with: g_return_if_fail (name != NULL); So clearly you have to pass a meaningful name... Jacques