Changeset ba9c50


Ignore:
Timestamp:
02/03/12 17:32:54 (3 months ago)
Author:
Micke Prag <micke.prag@…>
Branches:
('master', 'deebf2045e7119c339412580f37a1e653f7d5715')('controller-upgrade', '00f95d22e12d96ef089e0902ef62ae8ce841dc6f')
Children:
a1079c48dae1b80ad86c86589d69f2d021668ca2
Parents:
e834160492fcf522ade2ab40239ba2bf66e17be3
git-author:
Micke Prag <micke.prag@telldus.se>2012-02-03 17:32:54+01:00
git-committer:
Micke Prag <micke.prag@telldus.se>2012-02-03 17:32:54+01:00
Message:

Fix missing namespace in Events on Windows and Mac OS X

Location:
telldus-core
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • telldus-core/common/EventHandler_win.cpp

    r938187 rba9c50  
    55#include <windows.h> 
    66#include <list> 
     7 
     8using namespace TelldusCore; 
    79 
    810class EventHandler::PrivateData { 
  • telldus-core/common/Event_win.cpp

    r938187 rba9c50  
    11#include "Event.h" 
    22#include "Thread.h" 
     3 
     4using namespace TelldusCore; 
    35 
    46class Event::PrivateData { 
  • telldus-core/service/ConnectionListener_win.cpp

    r65ef52 rba9c50  
    1515        HANDLE hEvent; 
    1616        bool running; 
    17         EventRef waitEvent; 
     17        TelldusCore::EventRef waitEvent; 
    1818}; 
    1919 
    20 ConnectionListener::ConnectionListener(const std::wstring &name, EventRef waitEvent) 
     20ConnectionListener::ConnectionListener(const std::wstring &name, TelldusCore::EventRef waitEvent) 
    2121{ 
    2222        d = new PrivateData; 
  • telldus-core/service/TellStick_ftd2xx.cpp

    r915d47 rba9c50  
    4141}; 
    4242 
    43 TellStick::TellStick(int controllerId, Event *event, const TellStickDescriptor &td ) 
     43TellStick::TellStick(int controllerId, TelldusCore::Event *event, const TellStickDescriptor &td ) 
    4444        :Controller(controllerId, event) 
    4545{ 
Note: See TracChangeset for help on using the changeset viewer.