~xalioth/stellarium/fix-fonts-gltex-fab

« back to all changes in this revision

Viewing changes to src/QtScriptMgr.cpp

  • Committer: matthewg42
  • Date: 2008-11-27 14:36:21 UTC
  • Revision ID: vcs-imports@canonical.com-20081127143621-fbasu1vl30kq2edv
refactor: MovementMgr -> StelMovementMgr

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include "GridLinesMgr.hpp"
26
26
#include "LandscapeMgr.hpp"
27
27
#include "MeteorMgr.hpp"
28
 
#include "MovementMgr.hpp"
 
28
#include "StelMovementMgr.hpp"
29
29
#include "StelNavigator.hpp"
30
30
#include "NebulaMgr.hpp"
31
31
#include "SolarSystem.hpp"
525
525
 
526
526
void StelMainScriptAPI::moveToAltAzi(const QString& alt, const QString& azi, float duration)
527
527
{
528
 
        MovementMgr* mvmgr = (MovementMgr*)GETSTELMODULE("MovementMgr");
 
528
        StelMovementMgr* mvmgr = (StelMovementMgr*)GETSTELMODULE("StelMovementMgr");
529
529
        Q_ASSERT(mvmgr);
530
530
 
531
531
        StelApp::getInstance().getStelObjectMgr().unSelect();
540
540
 
541
541
void StelMainScriptAPI::moveToRaDec(const QString& ra, const QString& dec, float duration)
542
542
{
543
 
        MovementMgr* mvmgr = (MovementMgr*)GETSTELMODULE("MovementMgr");
 
543
        StelMovementMgr* mvmgr = (StelMovementMgr*)GETSTELMODULE("StelMovementMgr");
544
544
        Q_ASSERT(mvmgr);
545
545
 
546
546
        StelApp::getInstance().getStelObjectMgr().unSelect();