X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreuserinputhandler.h;h=26e850005a6df23d0367482cd0540dcce3984c6b;hp=ac798a7e8c847a2b92d55c0354bdc524c655169c;hb=4e40c486dea949244b73beaf73d5ceb1ef591b5b;hpb=d030c159599a22c9023b8f0d34909d3277707f52 diff --git a/src/core/coreuserinputhandler.h b/src/core/coreuserinputhandler.h index ac798a7e..26e85000 100644 --- a/src/core/coreuserinputhandler.h +++ b/src/core/coreuserinputhandler.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2019 by the Quassel Project * + * Copyright (C) 2005-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -79,6 +79,13 @@ public slots: void handleQuote(const BufferInfo& bufferInfo, const QString& text); void handleSay(const BufferInfo& bufferInfo, const QString& text); void handleSetkey(const BufferInfo& bufferInfo, const QString& text); + /** + * Handle the setname command, setting the user's realname + * + * @param bufferInfo Currently active buffer + * @param text New realname + */ + void handleSetname(const BufferInfo& bufferInfo, const QString& text); void handleShowkey(const BufferInfo& bufferInfo, const QString& text); void handleTopic(const BufferInfo& bufferInfo, const QString& text); void handleVoice(const BufferInfo& bufferInfo, const QString& text);