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

* contrib/hbqt/qtgui/qth/QBitmap.qth
  * contrib/hbqt/qtgui/qth/QColor.qth
  * contrib/hbqt/qtgui/qth/QComboBox.qth
    % Cleaned: constructor functions were left in <Proto> section,
      a result of an earlier version. Thanks Francessco to point it out.
This commit is contained in:
Pritpal Bedi
2011-02-11 23:39:39 +00:00
parent fd375eb577
commit d44521122c
4 changed files with 8 additions and 17 deletions

View File

@@ -16,6 +16,13 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-02-11 15:36 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbqt/qtgui/qth/QBitmap.qth
* contrib/hbqt/qtgui/qth/QColor.qth
* contrib/hbqt/qtgui/qth/QComboBox.qth
% Cleaned: constructor functions were left in <Proto> section,
a result of an earlier version. Thanks Francessco to point it out.
2011-02-11 14:27 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* src/rtl/browse.prg
% Optimized. On some RDD some points were a killer.

View File

@@ -74,12 +74,6 @@ HB_FUNC( QT_QBITMAP )
</ENUMS>
<PROTOS>
QBitmap ()
QBitmap ( const QPixmap & pixmap )
QBitmap ( int width, int height )
QBitmap ( const QSize & size )
QBitmap ( const QString & fileName, const char * format = 0 )
void clear ()
QBitmap transformed ( const QTransform & matrix ) const
QBitmap transformed ( const QMatrix & matrix ) const

View File

@@ -77,14 +77,6 @@ enum Spec { Rgb, Hsv, Cmyk, Invalid }
</ENUMS>
<PROTOS>
QColor ()
QColor ( int r, int g, int b, int a = 255 )
QColor ( QRgb color )
QColor ( Qt::GlobalColor color )
QColor ( const QString & name )
//QColor ( const char * name )
QColor ( const QColor & color )
int alpha () const
qreal alphaF () const
int black () const

View File

@@ -30,7 +30,7 @@ Calls = QT_QComboBox
*/
HB_FUNC( QT_QCOMBOBOX )
{
__HB_RETPTRGC__( new QComboBox( hbqt_par_QWidget( 1 ) ) );
__HB_RETPTRGC__( new QComboBox( hb_pcount() == 1 && HB_ISPOINTER( 1 ) ? hbqt_par_QWidget( 1 ) : 0 ) );
}
</CODE>
@@ -40,8 +40,6 @@ enum SizeAdjustPolicy { AdjustToContents, AdjustToContentsOnFirstShow, AdjustToM
</ENUMS>
<PROTOS>
QComboBox ( QWidget * parent = 0 )
void addItem ( const QString & text, const QVariant & userData = QVariant() )
void addItem ( const QIcon & icon, const QString & text, const QVariant & userData = QVariant() )
void addItems ( const QStringList & texts )