[rkward-cvs] rkward/rkward/plugin rkstandardcomponentgui.cpp,1.6,1.7 rkstandardcomponentgui.h,1.3,1.4

Thomas Friedrichsmeier tfry at users.sourceforge.net
Thu Apr 20 14:02:14 UTC 2006


Update of /cvsroot/rkward/rkward/rkward/plugin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13415/rkward/plugin

Modified Files:
	rkstandardcomponentgui.cpp rkstandardcomponentgui.h 
Log Message:
use RKCommandEditorWindow instead of obsoleted RKCommandEditor in plugins

Index: rkstandardcomponentgui.h
===================================================================
RCS file: /cvsroot/rkward/rkward/rkward/plugin/rkstandardcomponentgui.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** rkstandardcomponentgui.h	5 Apr 2006 10:09:18 -0000	1.3
--- rkstandardcomponentgui.h	20 Apr 2006 14:02:12 -0000	1.4
***************
*** 65,69 ****
  #include <qwidget.h>
  
! class RKCommandEditor;
  class QPushButton;
  class QTimer;
--- 65,69 ----
  #include <qwidget.h>
  
! class RKCommandEditorWindow;
  class QPushButton;
  class QTimer;
***************
*** 111,115 ****
  	QPushButton *help_button;
  	QPushButton *switch_button;
! 	RKCommandEditor *code_display;
  
  	bool enslaved;
--- 111,115 ----
  	QPushButton *help_button;
  	QPushButton *switch_button;
! 	RKCommandEditorWindow *code_display;
  
  	bool enslaved;

Index: rkstandardcomponentgui.cpp
===================================================================
RCS file: /cvsroot/rkward/rkward/rkward/plugin/rkstandardcomponentgui.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** rkstandardcomponentgui.cpp	5 Apr 2006 10:09:18 -0000	1.6
--- rkstandardcomponentgui.cpp	20 Apr 2006 14:02:12 -0000	1.7
***************
*** 28,32 ****
  #include <qlabel.h>
  
! #include "../rkcommandeditor.h"
  #include "../rbackend/rinterface.h"
  #include "../misc/rkerrordialog.h"
--- 28,32 ----
  #include <qlabel.h>
  
! #include "../windows/rkcommandeditorwindow.h"
  #include "../rbackend/rinterface.h"
  #include "../misc/rkerrordialog.h"
***************
*** 113,117 ****
  	
  	// code display
! 	code_display = new RKCommandEditor (splitter, true);
  	if (enslaved) code_display->hide ();
  }
--- 113,117 ----
  	
  	// code display
! 	code_display = new RKCommandEditorWindow (splitter, true);
  	if (enslaved) code_display->hide ();
  }
***************
*** 249,253 ****
  		QLabel *label = new QLabel (i18n ("Below you can see the command(s) corresponding to the settings you made. Click 'Submit' to run the command(s)."), last_page);
  		label->setAlignment (Qt::AlignAuto | Qt::AlignVCenter | Qt::ExpandTabs | Qt::WordBreak);
! 		code_display = new RKCommandEditor (last_page, true);
  		vbox->addWidget (label);
  		vbox->addWidget (code_display);
--- 249,253 ----
  		QLabel *label = new QLabel (i18n ("Below you can see the command(s) corresponding to the settings you made. Click 'Submit' to run the command(s)."), last_page);
  		label->setAlignment (Qt::AlignAuto | Qt::AlignVCenter | Qt::ExpandTabs | Qt::WordBreak);
! 		code_display = new RKCommandEditorWindow (last_page, true);
  		vbox->addWidget (label);
  		vbox->addWidget (code_display);





More information about the rkward-tracker mailing list