Changeset 72ea92b for src/UIElements/Qt4


Ignore:
Timestamp:
Aug 31, 2016, 8:06:50 AM (9 years ago)
Author:
Frederik Heber <heber@…>
Branches:
FragmentMolecule_checks_bonddegrees, Gui_Fixes
Children:
6e5ca9
Parents:
5c8056
Message:

Added second log view for stderr.

Location:
src/UIElements/Qt4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Qt4/QtMainWindow.cpp

    r5c8056 r72ea92b  
    112112  homologyList = new QtHomologyList(worldTab);
    113113  fragmentList = new QtFragmentList(worldTab);
    114   logBox = new QtLogBox(worldTab);
     114  logBox = new QtLogBox(std::cout, worldTab);
     115  errorlogBox = new QtLogBox(std::cerr, worldTab);
    115116  shapeController = new QtShapeController(worldTab);
    116117
     
    147148  worldTab->addTab(homologyList, "All Homologies");
    148149  worldTab->addTab(logBox, "Log");
     150  worldTab->addTab(errorlogBox, "Errors");
    149151
    150152  statusBar = new QtStatusBar(this);
  • src/UIElements/Qt4/QtMainWindow.hpp

    r5c8056 r72ea92b  
    7070  QSlider *timeline;
    7171  QtLogBox *logBox;
     72  QtLogBox *errorlogBox;
    7273
    7374  QtObservedInstanceBoard *InstanceBoard;
Note: See TracChangeset for help on using the changeset viewer.