Author Topic: Modification of a ".xrc" in a plugin  (Read 4857 times)

Djagawa

  • Guest
Modification of a ".xrc" in a plugin
« 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.

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: Modification of a ".xrc" in a plugin
« Reply #1 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.
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Djagawa

  • Guest
Re: Modification of a ".xrc" in a plugin
« Reply #2 on: April 11, 2006, 10:39:54 am »

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

Thank you  :D