2011-04-11 15:44 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/hbqt/qtgui/hbqt_hbqabstractitemmodel.cpp
    ! Minor.

  * contrib/hbxbp/xbpwindow.prg
    ! Fixed: :currentSize() was not returning the correct values
      in case of XbpDialog().
This commit is contained in:
Pritpal Bedi
2011-04-11 22:49:09 +00:00
parent 94ce0bf09b
commit e169dc8c34
3 changed files with 20 additions and 4 deletions

View File

@@ -16,6 +16,21 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-04-11 15:44 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbqt/qtgui/hbqt_hbqabstractitemmodel.cpp
! Minor.
* contrib/hbxbp/xbpwindow.prg
! Fixed: :currentSize() was not returning the correct values
in case of XbpDialog().
2011-04-11 13:13 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbxbp/xbpparthandler.prg
* contrib/hbxbp/xbpwindow.prg
+ Implemented: Xbase++ compatible :moveWithOwner feature.
Any dialog with :moveWithOwner set to TRUE will move together
with its owner if user moves the window which owns them.
2011-04-11 13:00 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbxbp/xbpdialog.prg
* contrib/hbxbp/xbpparthandler.prg

View File

@@ -91,7 +91,6 @@ QVariant hbqt_fetchData( PHB_ITEM block, int type, int role, int par1, int par2
vv = hb_itemGetStrUTF8( ret, &pText01, NULL );
hb_strfree( pText01 );
HB_TRACE( HB_TR_DEBUG, ( " fetchData[ s = %s ]", hb_itemGetCPtr( ret ) ) );
hb_itemRelease( ret );
}
else if( hb_itemType( ret ) & HB_IT_LOGICAL )
{
@@ -130,9 +129,11 @@ QVariant hbqt_fetchData( PHB_ITEM block, int type, int role, int par1, int par2
vv = * ( ( QFont * ) ( p->ph ) );
}
if( ret )
hb_itemRelease( ret );
if( ret )
{
hb_itemRelease( ret );
}
hb_vmRequestRestore();
}

View File

@@ -1274,7 +1274,7 @@ METHOD XbpWindow:currentPos()
METHOD XbpWindow:currentSize()
RETURN { ::oWidget:width(), ::oWidget:height() }
RETURN { ::oWidget:frameGeometry():width(), ::oWidget:frameGeometry():height() }
/*----------------------------------------------------------------------*/