~registry/stellarium/socis2015-de430

« back to all changes in this revision

Viewing changes to plugins/TelescopeControl/src/servers/Socket.cpp

  • Committer: georg-zotti
  • Date: 2016-01-16 13:14:07 UTC
  • mfrom: (7721.1.409 trunk)
  • Revision ID: georg.zotti@univie.ac.at-20160116131407-n3yqlhdmlzmc4irj
Merge from trunk r8130; Moved and added tooltips to controls in GUI. Seems ready for merge!

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include "StelApp.hpp"
28
28
#include "StelUtils.hpp"
29
29
 
30
 
#ifdef Q_OS_WIN32
 
30
#ifdef Q_OS_WIN
31
31
  #include <windows.h> // GetSystemTimeAsFileTime
32
32
#else
33
33
  #include <sys/time.h>
37
37
{
38
38
        long long int t;
39
39
        //StelCore *core = StelApp::getInstance().getCore();
40
 
#ifdef Q_OS_WIN32
 
40
#ifdef Q_OS_WIN
41
41
        union
42
42
        {
43
43
                FILETIME file_time;