Merge branch 'master' of https://github.com/pstavirs/ostinato
This commit is contained in:
commit
64bf7ec981
@ -48,7 +48,7 @@ private:
|
||||
void populateDump(QByteArray &dump, int &selOfs, int &selSize,
|
||||
QModelIndex parent = QModelIndex());
|
||||
bool inline isPrintable(char c)
|
||||
{if ((c > 48) && (c < 126)) return true; else return false; }
|
||||
{if ((c >= 32) && (c <= 126)) return true; else return false; }
|
||||
|
||||
private:
|
||||
QRect mOffsetPaneTopRect;
|
||||
|
@ -143,7 +143,7 @@ QVariant MacProtocol::fieldData(int index, FieldAttrib attrib,
|
||||
switch(attrib)
|
||||
{
|
||||
case FieldName:
|
||||
return QString("Desination");
|
||||
return QString("Destination");
|
||||
case FieldValue:
|
||||
return dstMac;
|
||||
case FieldTextValue:
|
||||
|
Loading…
Reference in New Issue
Block a user