~vbursian/research-assistant/intervers

« back to all changes in this revision

Viewing changes to RAGUI/Workbook.cpp

  • Committer: Viktor Bursian
  • Date: 2013-06-06 15:10:08 UTC
  • Revision ID: vbursian@gmail.com-20130606151008-6641eh62f0lgx8jt
Tags: version_0.3.0
versionĀ 0.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
*///////////////////////////////////////////////////////////////////////////////
9
9
#include "Workbook.h"
10
10
#include "BasicNodes.h"
11
 
#include "GeneralGUI.h"
12
11
#include <QGridLayout>
13
12
namespace RA {
14
13
//------------------------------------------------------------------------------
46
45
 
47
46
  UpdatingTimer = new QTimer(this);
48
47
  connect(UpdatingTimer, SIGNAL(timeout()), Evolution, SLOT(Update()));
49
 
  UpdatingTimer->start(UpdatingPeriod);
 
48
  UpdatingTimer->start(sNavigator::UpdatingPeriod);
50
49
}
51
50
 
52
51
const QIcon &  sWorkbook::Icon ()