Changeset 213 for trunk


Ignore:
Timestamp:
02/25/10 12:38:48 (14 years ago)
Author:
yerima
Message:

The new class name is BasicWindow? instead of BaseWindow? in visual Yao.

Location:
trunk/yao/src/interface
Files:
2 added
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/yao/src/interface/Main.cpp

    r201 r213  
    1717#include <QTextCodec> 
    1818#include "src/Include/MainWindow.hpp" 
    19 #include "BaseWindow.hpp" 
     19#include "BasicWindow.hpp" 
    2020//#include <iostream> 
    2121 
  • trunk/yao/src/interface/src/DefvalWindow.cpp

    r205 r213  
    2121/***************************************** The constructor **********************************************************************/ 
    2222 
    23 DefvalWindow::DefvalWindow(BaseWindow *parent): BaseWindow(parent) {  /*!< The constructor. */ 
     23DefvalWindow::DefvalWindow(BasicWindow *parent): BasicWindow(parent) {  /*!< The constructor. */ 
    2424         
    2525        setWindowTitle("Directive Defval.");     /*!< To set the window's title. */ 
  • trunk/yao/src/interface/src/Include/DefvalWindow.hpp

    r205 r213  
    77#ifndef DEFVALWINDOW_HPP 
    88#define DEFVALWINDOW_HPP 
    9 #include "BaseWindow.hpp" 
     9#include "BasicWindow.hpp" 
    1010#include <QStringList> 
    1111//#include <QPushButton> 
    1212//using namespace std; 
    1313 
    14 class DefvalWindow : public BaseWindow { 
     14class DefvalWindow : public BasicWindow { 
    1515 
    1616        Q_OBJECT; 
     
    2525             */    
    2626          
    27                 DefvalWindow(BaseWindow *parent=0);   /*!< This function returns the constante's data. */ 
     27                DefvalWindow(BasicWindow *parent=0);   /*!< This function returns the constante's data. */ 
    2828                //QStringList getDataDefval();   
    2929        protected : 
Note: See TracChangeset for help on using the changeset viewer.