Removed mostly unnecessary default constructor.
This commit is contained in:
@@ -127,7 +127,6 @@ private:
|
||||
static SortOrder m_sort_order;
|
||||
|
||||
public:
|
||||
Addon() {};
|
||||
/** Initialises the object from an XML node. */
|
||||
Addon(const XMLNode &xml);
|
||||
|
||||
|
||||
@@ -45,9 +45,10 @@ using namespace irr::gui;
|
||||
*/
|
||||
|
||||
AddonsLoading::AddonsLoading(const std::string &id)
|
||||
: ModalDialog(0.8f, 0.8f)
|
||||
: ModalDialog(0.8f, 0.8f),
|
||||
m_addon(*(addons_manager->getAddon(id)) )
|
||||
{
|
||||
m_addon = *(addons_manager->getAddon(id));
|
||||
|
||||
m_icon_shown = false;
|
||||
m_download_request = NULL;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user