~ubuntu-branches/ubuntu/saucy/minitube/saucy-proposed

« back to all changes in this revision

Viewing changes to src/global.h

  • Committer: Package Import Robot
  • Author(s): Jakob Haufe
  • Date: 2012-09-29 02:43:53 UTC
  • mfrom: (2.1.10)
  • Revision ID: package-import@ubuntu.com-20120929024353-cvsvqeewq4p93pb4
Tags: 1.9-1
* New upstream version (Closes: #673696).
* Refresh disable-update-check.
* Refresh proper-tempfiles.
* Use hardening-wrapper.

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
            networkHttpProxySetting();
131
131
            maybeSetSystemProxy();
132
132
            nam = new QNetworkAccessManager();
133
 
 
134
 
            // A simple disk based cache
135
 
            /*
136
 
            QNetworkDiskCache *cache = new QNetworkDiskCache();
137
 
            QString cacheLocation = QDesktopServices::storageLocation(QDesktopServices::DataLocation);
138
 
            qDebug() << cacheLocation;
139
 
            cache->setCacheDirectory(cacheLocation);
140
 
            nam->setCache(cache);
141
 
            */
142
133
        }
143
134
        return nam;
144
135
    }