[backport] Chat: Use Ctrl-A for 'select all' again (instead of Ctrl-B)
Backport of 783959a6810b to branch ui-scaling by sheepluva
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H
class AutoUpdater
{
public:
virtual ~AutoUpdater();
virtual void checkForUpdates() = 0;
virtual void checkForUpdatesNow() = 0;
};
#endif