paragui-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[paragui-cvs] CVS: paragui/test dblbuffer.cpp,1.3,1.4 paratest.cpp,1.6,1


From: Alexander Pipelka <address@hidden>
Subject: [paragui-cvs] CVS: paragui/test dblbuffer.cpp,1.3,1.4 paratest.cpp,1.6,1.7
Date: Thu, 02 May 2002 05:50:42 -0400

Update of /cvsroot/paragui/paragui/test
In directory subversions:/tmp/cvs-serv10651/test

Modified Files:
        dblbuffer.cpp paratest.cpp 
Log Message:
signal cleanup



Index: dblbuffer.cpp
===================================================================
RCS file: /cvsroot/paragui/paragui/test/dblbuffer.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** dblbuffer.cpp       27 Apr 2002 15:36:55 -0000      1.3
--- dblbuffer.cpp       2 May 2002 09:50:40 -0000       1.4
***************
*** 24,33 ****
  int bForeground = 0;
  
! bool handle_quit(PG_Button* button, PG_Pointer* data) {
        done = 1;
        return true;
  }
  
! bool handle_toggle(PG_RadioButton* button, PG_Pointer* data) {
        bForeground = 1-bForeground;
        return true;
--- 24,33 ----
  int bForeground = 0;
  
! bool handle_quit(PG_Button* button) {
        done = 1;
        return true;
  }
  
! bool handle_toggle(PG_RadioButton* button) {
        bForeground = 1-bForeground;
        return true;

Index: paratest.cpp
===================================================================
RCS file: /cvsroot/paragui/paragui/test/paratest.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** paratest.cpp        29 Apr 2002 11:44:22 -0000      1.6
--- paratest.cpp        2 May 2002 09:50:40 -0000       1.7
***************
*** 72,76 ****
  
        /** a new style callback member */
!       bool handle_show_window(PG_Button* button, PG_Pointer* data) {
                Show(true);
                return true;
--- 72,76 ----
  
        /** a new style callback member */
!       bool handle_show_window(PG_Button* button) {
                Show(true);
                return true;
***************
*** 93,97 ****
  protected:
  
!       bool handleButton(PG_Button* widget, PG_Pointer* data);
        
        bool handleScrollPos(PG_ScrollBar* widget, long pos);
--- 93,97 ----
  protected:
  
!       bool handleButton(PG_Button* widget);
        
        bool handleScrollPos(PG_ScrollBar* widget, long pos);
***************
*** 202,206 ****
  }
  
! bool TestWindow::handleButton(PG_Button* widget, PG_Pointer* data) {
        static int label=0;
  
--- 202,206 ----
  }
  
! bool TestWindow::handleButton(PG_Button* widget) {
        static int label=0;
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]