~treaves/stellarium/SearchGoto

« back to all changes in this revision

Viewing changes to src/core/modules/StarMgr.cpp

  • Committer: Timothy Reaves
  • Date: 2011-02-01 13:17:34 UTC
  • mfrom: (4870.1.4 signalsAndSlots)
  • Revision ID: treaves@silverfieldstech.com-20110201131734-dlixznpj88f2bmyk
Refactoring to use signals/slots for module-related functionality.

Show diffs side-by-side

added added

removed removed

Lines of Context:
236
236
        {
237
237
                it.value()->scaleAxis();
238
238
        }
 
239
        StelApp *app = &StelApp::getInstance();
 
240
        connect(app, SIGNAL(languageChanged()), this, SLOT(updateI18n()));
 
241
        connect(app, SIGNAL(skyCultureChanged(const QString&)), this, SLOT(updateSkyCulture(const QString&)));
 
242
        connect(app, SIGNAL(colorSchemeChanged(const QString&)), this, SLOT(setStelStyle(const QString&)));
239
243
}
240
244
 
241
245