Fix some issues found by cppcheck

This commit is contained in:
heckflosse
2018-11-22 18:40:09 +01:00
parent b7c04d3b08
commit 190772af5e
11 changed files with 20 additions and 31 deletions

View File

@@ -11,7 +11,7 @@
class ClutComboBox : public MyComboBox
{
public:
ClutComboBox(const Glib::ustring &path);
explicit ClutComboBox(const Glib::ustring &path);
//int fillFromDir (const Glib::ustring& path);
int foundClutsCount() const;
Glib::ustring getSelectedClut();
@@ -34,7 +34,7 @@ private:
Glib::RefPtr<Gtk::TreeStore> m_model;
ClutColumns m_columns;
int count;
ClutModel(const Glib::ustring &path);
explicit ClutModel(const Glib::ustring &path);
int parseDir (const Glib::ustring& path);
};