QTfrontend/SparkleAutoUpdater.h
author sheepluva
Mon, 21 Nov 2011 21:23:23 +0100
branch0.9.17
changeset 6408 58d0195ec76e
parent 2948 3f21a9dc93d0
child 7933 223b3a195474
permissions -rw-r--r--
this should fix the highlighting failz with non-lowercase player names like the one CheezeMonkey ran into. there is a workaround: in the user dir put the playername in <playerNameWithCorrectCase>_highlight.txt

/*
 * Copyright (C) 2008 Remko Troncon
 */

#ifndef SPARKLEAUTOUPDATER_H
#define SPARKLEAUTOUPDATER_H

#include <QString>

#include "AutoUpdater.h"

class SparkleAutoUpdater : public AutoUpdater
{
    public:
        SparkleAutoUpdater(const QString& url);
        ~SparkleAutoUpdater();

        void checkForUpdates();

    private:
        class Private;
        Private* d;
};

#endif