Changeset 490:9ae09ef2f7b3 in qutecom-2.2


Ignore:
Timestamp:
Feb 20, 2010 4:24:58 PM (3 years ago)
Author:
laurent@…
Branch:
default
Message:

bug fix : download update on mac

Location:
wengophone/src/presentation/qt/webservices/softupdate
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wengophone/src/presentation/qt/webservices/softupdate/QtBrowserSoftUpdate.cpp

    r0 r490  
    3232#include <QtGui/QtGui> 
    3333 
     34#include <util/WebBrowser.h> 
     35 
    3436QtBrowserSoftUpdate::QtBrowserSoftUpdate(const std::string & downloadUrl, 
    3537                                unsigned long long buildId, 
     
    3840        : QObject(parent) { 
    3941 
     42                _downloadUrl = downloadUrl; 
    4043        _softUpdateWindow = new QDialog(parent); 
    4144 
     
    5962 
    6063void QtBrowserSoftUpdate::showWengoDownloadWebPage() { 
    61         WsUrl::showWengoDownload(); 
     64        //WsUrl::showWengoDownload(); 
     65        WebBrowser::openUrl(_downloadUrl); 
    6266        _softUpdateWindow->accept(); 
    6367} 
  • wengophone/src/presentation/qt/webservices/softupdate/QtBrowserSoftUpdate.h

    r0 r490  
    5555 
    5656        QDialog * _softUpdateWindow; 
     57         
     58        std::string _downloadUrl; 
    5759}; 
    5860 
Note: See TracChangeset for help on using the changeset viewer.