Skip to content

Commit

Permalink
build: fix build with XCode 10.x
Browse files Browse the repository at this point in the history
  • Loading branch information
mcallegari committed Jun 12, 2019
1 parent 0fa2a0a commit 1fe2b8d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion engine/src/rgbscriptscache.cpp
Expand Up @@ -43,7 +43,7 @@ QList<QString> RGBScriptsCache::names() const
while (it.hasNext() == true)
names << it.next()->name();

return names;
return std::move(names);
}

RGBScript const& RGBScriptsCache::script(QString name) const
Expand Down
1 change: 0 additions & 1 deletion ui/test/vcxypad/vcxypad_test.cpp
Expand Up @@ -132,7 +132,6 @@ void VCXYPad_Test::copy()
VCFrame parent(&w, m_doc);
VCXYPad pad(&parent, m_doc);
pad.setCaption("Dingdong");
QSize size(80, 80);
QPointF pt(50, 30);
pad.m_area->setPosition(pt);

Expand Down

0 comments on commit 1fe2b8d

Please sign in to comment.