mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Prevent copying in a couple places (#4066)
This commit is contained in:
parent
34b5fa661f
commit
b232d16b55
|
@ -54,7 +54,7 @@ ContextMap buildContextMap(const MessagePtr &m, chatterino::Channel *channel)
|
|||
|
||||
bool subscribed = false;
|
||||
int subLength = 0;
|
||||
for (const QString &subBadge : {"subscriber", "founder"})
|
||||
for (const auto &subBadge : {"subscriber", "founder"})
|
||||
{
|
||||
if (!badges.contains(subBadge))
|
||||
{
|
||||
|
|
|
@ -286,11 +286,12 @@ void ResizingTextEdit::insertFromMimeData(const QMimeData *source)
|
|||
this->imagePasted.invoke(source);
|
||||
return;
|
||||
}
|
||||
else if (source->hasUrls())
|
||||
|
||||
if (source->hasUrls())
|
||||
{
|
||||
bool hasUploadable = false;
|
||||
auto mimeDb = QMimeDatabase();
|
||||
for (const QUrl url : source->urls())
|
||||
for (const QUrl &url : source->urls())
|
||||
{
|
||||
QMimeType mime = mimeDb.mimeTypeForUrl(url);
|
||||
if (mime.name().startsWith("image"))
|
||||
|
|
|
@ -239,7 +239,7 @@ void ModerationPage::addModerationButtonSettings(
|
|||
|
||||
// build one line for each customizable button
|
||||
auto i = 0;
|
||||
for (const auto tButton : getSettings()->timeoutButtons.getValue())
|
||||
for (const auto &tButton : getSettings()->timeoutButtons.getValue())
|
||||
{
|
||||
const auto buttonNumber = QString::number(i);
|
||||
auto timeout = timeoutLayout.emplace<QHBoxLayout>().withoutMargin();
|
||||
|
|
Loading…
Reference in a new issue