This commit is contained in:
Srivats P 2017-03-13 20:18:19 +05:30
commit 64bf7ec981
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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: