2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

media overview multiple selection done, fixed search result delete crash

This commit is contained in:
John Preston
2014-08-21 16:18:56 +04:00
parent db7fa9ba2f
commit 8a817eb204
13 changed files with 267 additions and 83 deletions

View File

@@ -126,15 +126,15 @@ struct PeerData {
class PeerLink : public ITextLink {
public:
PeerLink(const PeerData *peer) : _peer(peer) {
PeerLink(PeerData *peer) : _peer(peer) {
}
void onClick(Qt::MouseButton button) const;
const PeerData *peer() const {
PeerData *peer() const {
return _peer;
}
private:
const PeerData *_peer;
PeerData *_peer;
};
struct PhotoData;