Thanks a bunch. Brgds, Viktor
On 2010 Jan 4, at 17:36, [email protected] wrote: > Revision: 13466 > > http://harbour-project.svn.sourceforge.net/harbour-project/?rev=13466&view=rev > Author: vouchcac > Date: 2010-01-04 16:36:06 +0000 (Mon, 04 Jan 2010) > > Log Message: > ----------- > 2010-01-04 08:33 UTC-0800 Pritpal Bedi ([email protected]) > * contrib/hbide/resources/selectionlist.ui > ! A little less-height window. > > * contrib/hbide/ideeditor.prg > * contrib/hbxbp/xbpmenubar.prg > * contrib/hbxbp/xbpprintdialog.prg > * contrib/hbxbp/xbpwindow.prg > % Fixed calls to removed Qt functions. > > Modified Paths: > -------------- > trunk/harbour/ChangeLog > trunk/harbour/contrib/hbide/ideeditor.prg > trunk/harbour/contrib/hbide/resources/selectionlist.ui > trunk/harbour/contrib/hbxbp/xbpmenubar.prg > trunk/harbour/contrib/hbxbp/xbpprintdialog.prg > trunk/harbour/contrib/hbxbp/xbpwindow.prg > > Modified: trunk/harbour/ChangeLog > =================================================================== > --- trunk/harbour/ChangeLog 2010-01-04 14:58:36 UTC (rev 13465) > +++ trunk/harbour/ChangeLog 2010-01-04 16:36:06 UTC (rev 13466) > @@ -17,6 +17,16 @@ > past entries belonging to author(s): Viktor Szakats. > */ > > +2010-01-04 08:33 UTC-0800 Pritpal Bedi ([email protected]) > + * contrib/hbide/resources/selectionlist.ui > + ! A little less-height window. > + > + * contrib/hbide/ideeditor.prg > + * contrib/hbxbp/xbpmenubar.prg > + * contrib/hbxbp/xbpprintdialog.prg > + * contrib/hbxbp/xbpwindow.prg > + % Fixed calls to removed Qt functions. > + > 2010-01-04 15:56 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) > * contrib/hbide/idethemes.prg > * contrib/hbide/ideeditor.prg > > Modified: trunk/harbour/contrib/hbide/ideeditor.prg > =================================================================== > --- trunk/harbour/contrib/hbide/ideeditor.prg 2010-01-04 14:58:36 UTC (rev > 13465) > +++ trunk/harbour/contrib/hbide/ideeditor.prg 2010-01-04 16:36:06 UTC (rev > 13466) > @@ -424,7 +424,7 @@ > METHOD IdeEditor:showPPO( cFile ) > LOCAL qEdit, qHiliter > > - IF hb_FileExists( cFile ) > + IF file( cFile ) > qEdit := QPlainTextEdit():new() > qEdit:setPlainText( hb_memoRead( cFile ) ) > qEdit:setLineWrapMode( QTextEdit_NoWrap ) > @@ -475,3 +475,4 @@ > RETURN Self > > /*----------------------------------------------------------------------*/ > + > > Modified: trunk/harbour/contrib/hbide/resources/selectionlist.ui > =================================================================== > --- trunk/harbour/contrib/hbide/resources/selectionlist.ui 2010-01-04 > 14:58:36 UTC (rev 13465) > +++ trunk/harbour/contrib/hbide/resources/selectionlist.ui 2010-01-04 > 16:36:06 UTC (rev 13466) > @@ -7,7 +7,7 @@ > <x>0</x> > <y>0</y> > <width>221</width> > - <height>300</height> > + <height>188</height> > </rect> > </property> > <property name="windowTitle"> > @@ -17,13 +17,6 @@ > <item> > <layout class="QVBoxLayout" name="verticalLayout"> > <item> > - <widget class="QLabel" name="labelDesc"> > - <property name="text"> > - <string>Select an Option</string> > - </property> > - </widget> > - </item> > - <item> > <layout class="QHBoxLayout" name="horizontalLayout_2"> > <item> > <widget class="QListView" name="listOptions"> > > Modified: trunk/harbour/contrib/hbxbp/xbpmenubar.prg > =================================================================== > --- trunk/harbour/contrib/hbxbp/xbpmenubar.prg 2010-01-04 14:58:36 UTC > (rev 13465) > +++ trunk/harbour/contrib/hbxbp/xbpmenubar.prg 2010-01-04 16:36:06 UTC > (rev 13466) > @@ -278,8 +278,8 @@ > //::aMenuItems[ nItemIndex, 4 ]:destroy() > ELSE > oAction := ::aMenuItems[ nItemIndex, 5 ] > - QT_DISCONNECT_SIGNAL( oAction:pPtr, "triggered(bool)" ) > - QT_DISCONNECT_SIGNAL( oAction:pPtr, "hovered()" ) > + Qt_Events_disConnect( ::pEvents, oAction, "triggered(bool)" ) > + Qt_Slots_disConnect( ::pSlots, oAction, "hovered()" ) > oAction:pPtr := 0 > ENDIF > ADEL( ::aMenuItems, nItemIndex ) > > Modified: trunk/harbour/contrib/hbxbp/xbpprintdialog.prg > =================================================================== > --- trunk/harbour/contrib/hbxbp/xbpprintdialog.prg 2010-01-04 14:58:36 UTC > (rev 13465) > +++ trunk/harbour/contrib/hbxbp/xbpprintdialog.prg 2010-01-04 16:36:06 UTC > (rev 13466) > @@ -122,7 +122,7 @@ > METHOD XbpPrintDialog:destroy() > > IF len( ::aConnections ) > 0 > - aeval( ::aConnections, {|e_| Qt_DisConnect_Signal( e_[ 1 ], e_[ 2 ] ), > e_[ 1 ] := NIL, e_[ 2 ] := NIL } ) > + aeval( ::aConnections, {|e_| Qt_Slots_DisConnect( ::pSlots, e_[ 1 ], > e_[ 2 ] ), e_[ 1 ] := NIL, e_[ 2 ] := NIL } ) > ::aConnections := {} > ENDIF > > > Modified: trunk/harbour/contrib/hbxbp/xbpwindow.prg > =================================================================== > --- trunk/harbour/contrib/hbxbp/xbpwindow.prg 2010-01-04 14:58:36 UTC (rev > 13465) > +++ trunk/harbour/contrib/hbxbp/xbpwindow.prg 2010-01-04 16:36:06 UTC (rev > 13466) > @@ -497,7 +497,7 @@ > ::xDummy := Qt_Events_DisConnect( ::pEvents, e_[ 1 ], e_[ 2 ] ) > NEXT > ::aEConnections := {} > - ::oWidget:removeEventFilter( QT_GetEventFilter() ) > + ::oWidget:removeEventFilter( ::pEvents ) > ENDIF > > IF Len( ::aChildren ) > 0 > > > This was sent by the SourceForge.net collaborative development platform, the > world's largest Open Source development site. _______________________________________________ Harbour mailing list (attachment size limit: 40KB) [email protected] http://lists.harbour-project.org/mailman/listinfo/harbour
