Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Plugins development => Topic started by: Djagawa on April 10, 2006, 11:38:34 am

Title: Modification of a ".xrc" in a plugin
Post by: Djagawa on April 10, 2006, 11:38:34 am
Hello,

I'm trying to change the plugin for gdb, called "debuggergdb".
I modify several lines into "debugger_options_dlg.xrc" and I saw that this file is loaded with a line in debuggergdb.cpp :
   
Code: c
 Manager::Get()->Loadxrc(_T("/debugger_gdb.zip#zip:*.xrc")); 

Do I have to do something if I want that my modifications are updated (like a make for example) or can I only compile the project ?

Thanks.
Title: Re: Modification of a ".xrc" in a plugin
Post by: thomas on April 10, 2006, 02:39:33 pm
If you change any XRC files, you have to run update.bat after recompiling, that should be all.
Title: Re: Modification of a ".xrc" in a plugin
Post by: Djagawa on April 11, 2006, 10:39:54 am

Ok, I've done that and It works now.

Thank you  :D