diff --git a/harbour/ChangeLog b/harbour/ChangeLog index ac6ddd1f13..f13d8d7adc 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,19 @@ The license applies to all entries newer than 2009-04-28. */ +2010-10-17 23:35 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * contrib/hbxbp/hbxbp.hbc + * contrib/hbide/hbide.hbp + * Moved inclusion of hbqtuitools from hbxbp to hbide. + Dynamic QUiLoader shall only be needed if app explicitly + requires loading .ui/.uic files dynamically. + ; TOFIX: Separate dynamic ui loader code from static one + (pbly HbQtUi class needs to be split into two + parts) + + * contrib/hbide/idemain.prg + + Reenabled puller code, because external scripts may need it. + 2010-10-17 22:36 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * contrib/hbide/idemain.prg % Do not link all HBXBP classes. It's not required now that .ui diff --git a/harbour/contrib/hbide/hbide.hbp b/harbour/contrib/hbide/hbide.hbp index 6e76494ff3..899804a441 100644 --- a/harbour/contrib/hbide/hbide.hbp +++ b/harbour/contrib/hbide/hbide.hbp @@ -21,6 +21,7 @@ ../hbxbp/hbxbp.hbc ../hbqt/hbqtnetwork.hbc +../hbqt/hbqtuitools.hbc idemain.prg ideobject.prg diff --git a/harbour/contrib/hbide/idemain.prg b/harbour/contrib/hbide/idemain.prg index 4e07cdc834..add614e860 100644 --- a/harbour/contrib/hbide/idemain.prg +++ b/harbour/contrib/hbide/idemain.prg @@ -79,11 +79,11 @@ #include "hbclass.ch" #include "hbver.ch" -/* Link all Harbour Functions : needed to run auto scripts */ +/* Link all Harbour Functions : needed to run external scripts */ REQUEST __HB_EXTERN__ -//REQUEST __HBEXTERN__HBXBP__ +REQUEST __HBEXTERN__HBXBP__ REQUEST __HBEXTERN__HBQTCORE__ -//REQUEST __HBEXTERN__HBQTGUI__ +REQUEST __HBEXTERN__HBQTGUI__ REQUEST __HBEXTERN__HBQTNETWORK__ /*----------------------------------------------------------------------*/ diff --git a/harbour/contrib/hbxbp/hbxbp.hbc b/harbour/contrib/hbxbp/hbxbp.hbc index 2823d7444e..9c3e3ca688 100644 --- a/harbour/contrib/hbxbp/hbxbp.hbc +++ b/harbour/contrib/hbxbp/hbxbp.hbc @@ -8,4 +8,3 @@ libs=${hb_name}${__HB_DYN__} libs=../hbqt/hbqtcore.hbc libs=../hbqt/hbqtgui.hbc -libs=../hbqt/hbqtuitools.hbc