Skip to content

Commit

Permalink
NOISSUE fix a bunch of compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
peterix committed May 21, 2017
1 parent 572a602 commit 8bd8be9
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 27 deletions.
6 changes: 3 additions & 3 deletions api/logic/Commandline.cpp
Expand Up @@ -44,7 +44,7 @@ QStringList splitArgs(QString args)
}
else if (!inquotes.isNull())
{
if (cchar == 0x5C)
if (cchar == '\\')
escape = true;
else if (cchar == inquotes)
inquotes = 0;
Expand All @@ -54,15 +54,15 @@ QStringList splitArgs(QString args)
}
else
{
if (cchar == 0x20)
if (cchar == ' ')
{
if (!current.isEmpty())
{
argv << current;
current.clear();
}
}
else if (cchar == 0x22 || cchar == 0x27)
else if (cchar == '"' || cchar == '\'')
inquotes = cchar;
else
current += cchar;
Expand Down
7 changes: 2 additions & 5 deletions api/logic/minecraft/ModList.cpp
Expand Up @@ -341,7 +341,6 @@ bool ModList::dropMimeData(const QMimeData* data, Qt::DropAction action, int, in
if (data->hasUrls())
{
bool was_watching = is_watching;
bool added = false;
if (was_watching)
{
stopWatching();
Expand All @@ -355,10 +354,8 @@ bool ModList::dropMimeData(const QMimeData* data, Qt::DropAction action, int, in
continue;
}
// TODO: implement not only copy, but also move
if (installMod(url.toLocalFile()))
{
added = true;
}
// FIXME: handle errors here
installMod(url.toLocalFile());
}
if (was_watching)
{
Expand Down
2 changes: 1 addition & 1 deletion api/logic/minecraft/ParseUtils_test.cpp
Expand Up @@ -22,7 +22,7 @@ private
"2016-02-10T15:06:41+00:00",
"2016-02-04T15:28:02-05:33"
};
for(int i = 0; i < (sizeof(timestamps) / sizeof(const char *)); i++)
for(unsigned i = 0; i < (sizeof(timestamps) / sizeof(const char *)); i++)
{
QTest::newRow(timestamps[i]) << QString(timestamps[i]);
}
Expand Down
6 changes: 4 additions & 2 deletions api/logic/minecraft/forge/ForgeXzDownload.cpp
Expand Up @@ -210,7 +210,8 @@ void ForgeXzDownload::decompressAndInstall()

if (b.out_pos == sizeof(out))
{
if (pack200_file.write((char *)out, b.out_pos) != b.out_pos)
auto wresult = pack200_file.write((char *)out, b.out_pos);
if (wresult < 0 || size_t(wresult) != b.out_pos)
{
// msg = "Write error\n";
xz_dec_end(s);
Expand All @@ -230,7 +231,8 @@ void ForgeXzDownload::decompressAndInstall()
continue;
}

if (pack200_file.write((char *)out, b.out_pos) != b.out_pos)
auto wresult = pack200_file.write((char *)out, b.out_pos);
if (wresult < 0 || size_t(wresult) != b.out_pos)
{
// write error
pack200_file.close();
Expand Down
2 changes: 0 additions & 2 deletions api/logic/minecraft/onesix/OneSixProfileStrategy.cpp
Expand Up @@ -158,7 +158,6 @@ void OneSixProfileStrategy::loadUserPatches()
// now add all the patches by user sort order
ProfileUtils::PatchOrder userOrder;
ProfileUtils::readOverrideOrders(FS::PathCombine(m_instance->instanceRoot(), "order.json"), userOrder);
bool orderIsDirty = false;
for (auto uid : userOrder)
{
// ignore builtins
Expand All @@ -169,7 +168,6 @@ void OneSixProfileStrategy::loadUserPatches()
// ordering has a patch that is gone?
if(!loadedPatches.contains(uid))
{
orderIsDirty = true;
continue;
}
profile->appendPatch(loadedPatches.take(uid));
Expand Down
1 change: 1 addition & 0 deletions api/logic/net/Download.cpp
Expand Up @@ -85,6 +85,7 @@ void Download::start()
case Job_InProgress:
qDebug() << "Downloading " << m_url.toString();
break;
case Job_Failed_Proceed: // this is meaningless in this context. We do need a sink.
case Job_NotStarted:
case Job_Failed:
emit failed(m_index_within_job);
Expand Down
2 changes: 1 addition & 1 deletion api/logic/net/PasteUpload.h
Expand Up @@ -20,7 +20,7 @@ class MULTIMC_LOGIC_EXPORT PasteUpload : public Task
{
return m_pasteID;
}
uint32_t maxSize()
int maxSize()
{
// 2MB for paste.ee - public
if(m_key == "public")
Expand Down
2 changes: 0 additions & 2 deletions application/MultiMC.h
Expand Up @@ -47,8 +47,6 @@ class MultiMC : public QApplication
enum Status
{
StartingUp,
UnwritableLog,
FailedShowError,
Failed,
Succeeded,
Initialized
Expand Down
5 changes: 2 additions & 3 deletions application/groupview/GroupView.cpp
Expand Up @@ -407,7 +407,7 @@ void GroupView::paintEvent(QPaintEvent *event)

QPainter painter(this->viewport());

QStyleOptionViewItemV4 option(viewOptions());
QStyleOptionViewItem option(viewOptions());
option.widget = this;

int wpWidth = viewport()->width();
Expand Down Expand Up @@ -437,8 +437,7 @@ void GroupView::paintEvent(QPaintEvent *event)
}
Qt::ItemFlags flags = index.flags();
option.rect = visualRect(index);
option.features |=
QStyleOptionViewItemV2::WrapText; // FIXME: what is the meaning of this anyway?
option.features |= QStyleOptionViewItem::WrapText;
if (flags & Qt::ItemIsSelectable && selectionModel()->isSelected(index))
{
option.state |= selectionModel()->isSelected(index) ? QStyle::State_Selected
Expand Down
16 changes: 8 additions & 8 deletions application/groupview/InstanceDelegate.cpp
Expand Up @@ -52,7 +52,7 @@ ListViewDelegate::ListViewDelegate(QObject *parent) : QStyledItemDelegate(parent
{
}

void drawSelectionRect(QPainter *painter, const QStyleOptionViewItemV4 &option,
void drawSelectionRect(QPainter *painter, const QStyleOptionViewItem &option,
const QRect &rect)
{
if ((option.state & QStyle::State_Selected))
Expand All @@ -65,7 +65,7 @@ void drawSelectionRect(QPainter *painter, const QStyleOptionViewItemV4 &option,
}
}

void drawFocusRect(QPainter *painter, const QStyleOptionViewItemV4 &option, const QRect &rect)
void drawFocusRect(QPainter *painter, const QStyleOptionViewItem &option, const QRect &rect)
{
if (!(option.state & QStyle::State_HasFocus))
return;
Expand All @@ -89,7 +89,7 @@ void drawFocusRect(QPainter *painter, const QStyleOptionViewItemV4 &option, cons
}

// TODO this can be made a lot prettier
void drawProgressOverlay(QPainter *painter, const QStyleOptionViewItemV4 &option,
void drawProgressOverlay(QPainter *painter, const QStyleOptionViewItem &option,
const int value, const int maximum)
{
if (maximum == 0 || value == maximum)
Expand All @@ -109,7 +109,7 @@ void drawProgressOverlay(QPainter *painter, const QStyleOptionViewItemV4 &option
painter->restore();
}

void drawBadges(QPainter *painter, const QStyleOptionViewItemV4 &option, BaseInstance *instance, QIcon::Mode mode, QIcon::State state)
void drawBadges(QPainter *painter, const QStyleOptionViewItem &option, BaseInstance *instance, QIcon::Mode mode, QIcon::State state)
{
QList<QString> pixmaps;
if (instance->isRunning())
Expand Down Expand Up @@ -156,7 +156,7 @@ void drawBadges(QPainter *painter, const QStyleOptionViewItemV4 &option, BaseIns
painter->translate(-option.rect.topLeft());
}

static QSize viewItemTextSize(const QStyleOptionViewItemV4 *option)
static QSize viewItemTextSize(const QStyleOptionViewItem *option)
{
QStyle *style = option->widget ? option->widget->style() : QApplication::style();
QTextOption textOption;
Expand All @@ -177,7 +177,7 @@ static QSize viewItemTextSize(const QStyleOptionViewItemV4 *option)
void ListViewDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
QStyleOptionViewItemV4 opt = option;
QStyleOptionViewItem opt = option;
initStyleOption(&opt, index);
painter->save();
painter->setClipRect(opt.rect);
Expand Down Expand Up @@ -205,7 +205,7 @@ void ListViewDelegate::paint(QPainter *painter, const QStyleOptionViewItem &opti
// FIXME: unused
// QSize textSize = viewItemTextSize ( &opt );
QPalette::ColorGroup cg;
QStyleOptionViewItemV4 opt2(opt);
QStyleOptionViewItem opt2(opt);

if ((opt.widget && opt.widget->isEnabled()) || (opt.state & QStyle::State_Enabled))
{
Expand Down Expand Up @@ -323,7 +323,7 @@ void ListViewDelegate::paint(QPainter *painter, const QStyleOptionViewItem &opti
QSize ListViewDelegate::sizeHint(const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
QStyleOptionViewItemV4 opt = option;
QStyleOptionViewItem opt = option;
initStyleOption(&opt, index);
opt.features |= QStyleOptionViewItem::WrapText;
opt.text = index.data().toString();
Expand Down

0 comments on commit 8bd8be9

Please sign in to comment.