2012-06-04 14:11 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/hbqt/qscintilla/qth/QsciStyledText.qth
    ! Fixed: ( residual ) usage of hbqt_par_QString().
This commit is contained in:
Pritpal Bedi
2012-06-04 21:12:51 +00:00
parent c1529997d1
commit 80e1f2399a
2 changed files with 7 additions and 1 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-06-04 14:11 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbqt/qscintilla/qth/QsciStyledText.qth
! Fixed: ( residual ) usage of hbqt_par_QString().
2012-06-04 14:02 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/hbqreportsmanager.prg
* contrib/hbide/hbqtoolbar.prg

View File

@@ -38,7 +38,9 @@ HB_FUNC( QT_QSCISTYLEDTEXT )
{
if( hb_pcount() == 2 && HB_ISCHAR( 1 ) && HB_ISNUM( 2 ) )
{
__HB_RETPTRGC__( new QsciStyledText( hbqt_par_QString( 1 ), hb_parni( 2 ) ) );
void * pText01 = NULL;
__HB_RETPTRGC__( new QsciStyledText( hb_parstr_utf8( 1, &pText01, NULL ), hb_parni( 2 ) ) );
hb_strfree( pText01 );
}
else if( hb_pcount() == 2 && HB_ISCHAR( 1 ) && HB_ISOBJECT( 2 ) )
{