Skip to content

Commit

Permalink
Merge pull request #391 from TNick/RemoveUnusedWarnings
Browse files Browse the repository at this point in the history
Removed <unused> warnings from some plug-in files
  • Loading branch information
Rallaz committed Mar 19, 2013
2 parents 9e0ba46 + e9b1dc0 commit a5c44cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions plugins/align/align.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ void LC_Align::execComm(Document_Interface *doc,
QWidget *parent, QString cmd)
{
Q_UNUSED(parent);
Q_UNUSED(cmd);
QPointF base1, base2, target1, target2;
QList<Plug_Entity *> obj;
bool yes = doc->getSelect(&obj);
Expand Down
1 change: 1 addition & 0 deletions plugins/sameprop/sameprop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ void LC_SameProp::execComm(Document_Interface *doc,
QWidget *parent, QString cmd)
{
Q_UNUSED(parent);
Q_UNUSED(cmd);
QHash<int, QVariant> data, moddata;
QList<Plug_Entity *> obj;
QVariant lay, col, ltype, lwidth;
Expand Down
1 change: 1 addition & 0 deletions plugins/sample/sample.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ void LC_Sample::execComm(Document_Interface *doc,
QWidget *parent, QString cmd)
{
Q_UNUSED(doc);
Q_UNUSED(cmd);
lc_Sampledlg pdt(parent);
int result = pdt.exec();
if (result == QDialog::Accepted)
Expand Down

0 comments on commit a5c44cf

Please sign in to comment.