mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
Amend 3b7a79f1
: Use Debug::base_type instead of 'unsigned long long' where possible
This commit is contained in:
parent
3b7a79f137
commit
98cc6acd0b
@ -51,7 +51,7 @@ GuiProgressView::~GuiProgressView()
|
||||
|
||||
|
||||
namespace{
|
||||
typedef pair<unsigned long long, QString> DebugMap;
|
||||
typedef pair<Debug::base_type, QString> DebugMap;
|
||||
typedef vector<DebugMap> DebugVector;
|
||||
|
||||
bool DebugSorter(DebugMap const & a, DebugMap const & b)
|
||||
@ -152,7 +152,7 @@ void GuiProgressView::debugMessageActivated(QTreeWidgetItem * item, int)
|
||||
|
||||
void GuiProgressView::levelChanged()
|
||||
{
|
||||
unsigned long long level = Debug::NONE;
|
||||
Debug::base_type level = Debug::NONE;
|
||||
QTreeWidgetItemIterator it(widget_->debugMessagesTW);
|
||||
while (*it) {
|
||||
if ((*it)->text(1) == qt_("Yes")) {
|
||||
|
Loading…
Reference in New Issue
Block a user