mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-31 06:26:18 +00:00
Replace gsl::not_null<T*> with just not_null<T*>.
This commit is contained in:
@@ -48,9 +48,9 @@ public:
|
||||
class Delegate {
|
||||
public:
|
||||
virtual DhConfig getDhConfig() const = 0;
|
||||
virtual void callFinished(gsl::not_null<Call*> call) = 0;
|
||||
virtual void callFailed(gsl::not_null<Call*> call) = 0;
|
||||
virtual void callRedial(gsl::not_null<Call*> call) = 0;
|
||||
virtual void callFinished(not_null<Call*> call) = 0;
|
||||
virtual void callFailed(not_null<Call*> call) = 0;
|
||||
virtual void callRedial(not_null<Call*> call) = 0;
|
||||
|
||||
enum class Sound {
|
||||
Connecting,
|
||||
@@ -69,12 +69,12 @@ public:
|
||||
Incoming,
|
||||
Outgoing,
|
||||
};
|
||||
Call(gsl::not_null<Delegate*> delegate, gsl::not_null<UserData*> user, Type type);
|
||||
Call(not_null<Delegate*> delegate, not_null<UserData*> user, Type type);
|
||||
|
||||
Type type() const {
|
||||
return _type;
|
||||
}
|
||||
gsl::not_null<UserData*> user() const {
|
||||
not_null<UserData*> user() const {
|
||||
return _user;
|
||||
}
|
||||
bool isIncomingWaiting() const;
|
||||
@@ -157,8 +157,8 @@ private:
|
||||
void setFailedQueued(int error);
|
||||
void destroyController();
|
||||
|
||||
gsl::not_null<Delegate*> _delegate;
|
||||
gsl::not_null<UserData*> _user;
|
||||
not_null<Delegate*> _delegate;
|
||||
not_null<UserData*> _user;
|
||||
Type _type = Type::Outgoing;
|
||||
State _state = State::Starting;
|
||||
FinishType _finishAfterRequestingCall = FinishType::None;
|
||||
|
Reference in New Issue
Block a user