paragui-cvs
[Top][All Lists]
Advanced

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

[paragui-cvs] CVS: paragui/src/widgets pgdropdown.cpp,1.6,1.7 pglistbox.


From: Alexander Pipelka <address@hidden>
Subject: [paragui-cvs] CVS: paragui/src/widgets pgdropdown.cpp,1.6,1.7 pglistbox.cpp,1.6,1.7 pgwidget.cpp,1.11,1.12 pgwindow.cpp,1.8,1.9
Date: Mon, 06 May 2002 02:24:31 -0400

Update of /cvsroot/paragui/paragui/src/widgets
In directory subversions:/tmp/cvs-serv8441/src/widgets

Modified Files:
        pgdropdown.cpp pglistbox.cpp pgwidget.cpp pgwindow.cpp 
Log Message:
started signal redesign (not finished).
may fail to compile



Index: pgdropdown.cpp
===================================================================
RCS file: /cvsroot/paragui/paragui/src/widgets/pgdropdown.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** pgdropdown.cpp      2 May 2002 09:50:40 -0000       1.6
--- pgdropdown.cpp      6 May 2002 06:24:29 -0000       1.7
***************
*** 137,141 ****
        my_DropList->Hide();
  
!       return sigSelectItem(item, item->GetUserData());
  }
  
--- 137,141 ----
        my_DropList->Hide();
  
!       return sigSelectItem(item);
  }
  

Index: pglistbox.cpp
===================================================================
RCS file: /cvsroot/paragui/paragui/src/widgets/pglistbox.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** pglistbox.cpp       30 Apr 2002 10:18:39 -0000      1.6
--- pglistbox.cpp       6 May 2002 06:24:29 -0000       1.7
***************
*** 84,88 ****
        }
  
!       sigSelectItem((PG_ListBoxItem*)item, item->GetUserData());
  }
  
--- 84,88 ----
        }
  
!       sigSelectItem((PG_ListBoxItem*)item);
  }
  

Index: pgwidget.cpp
===================================================================
RCS file: /cvsroot/paragui/paragui/src/widgets/pgwidget.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** pgwidget.cpp        2 May 2002 09:50:40 -0000       1.11
--- pgwidget.cpp        6 May 2002 06:24:29 -0000       1.12
***************
*** 1485,1489 ****
  }
  
! bool PG_Widget::QuitModal() {
        my_internaldata->quitModalLoop = true;
        return true;
--- 1485,1489 ----
  }
  
! bool PG_Widget::QuitModal(PG_Widget* sender) {
        my_internaldata->quitModalLoop = true;
        return true;

Index: pgwindow.cpp
===================================================================
RCS file: /cvsroot/paragui/paragui/src/widgets/pgwindow.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** pgwindow.cpp        2 May 2002 09:50:40 -0000       1.8
--- pgwindow.cpp        6 May 2002 06:24:29 -0000       1.9
***************
*** 244,248 ****
  
  int PG_Window::RunModal() {
!       Connection c = sigWindowClose.connect(slot(this, 
&PG_Widget::QuitModal));
        int rc = PG_Widget::RunModal();
        c.disconnect();
--- 244,248 ----
  
  int PG_Window::RunModal() {
!       Connection c = 
sigWindowClose.connect(PG_SignalWindowClose::convert_slot(slot(this, 
&PG_Widget::QuitModal)));
        int rc = PG_Widget::RunModal();
        c.disconnect();




reply via email to

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