2014-12-31 06:19:54 +00:00
|
|
|
#include "loadordererror.hpp"
|
2017-05-05 19:21:11 +00:00
|
|
|
#include <cassert>
|
2014-12-31 06:19:54 +00:00
|
|
|
|
|
|
|
QString ContentSelectorModel::LoadOrderError::sErrorToolTips[ErrorCode_LoadOrder]
|
|
|
|
= { QString("Unable to find dependent file: %1"), QString("Dependent file needs to be active: %1"),
|
2014-12-31 20:40:42 +00:00
|
|
|
QString("This file needs to load after %1") };
|
2014-12-31 06:19:54 +00:00
|
|
|
|
|
|
|
QString ContentSelectorModel::LoadOrderError::toolTip() const
|
|
|
|
{
|
|
|
|
assert(mErrorCode);
|
|
|
|
return sErrorToolTips[mErrorCode - 1].arg(mFileName);
|
|
|
|
}
|