1
0
Fork 0

PROJECT: some help update

GUI: fixed 'invalid range' messages (thanks to Hellsp@wn)
This commit is contained in:
Mr. eXoDia 2014-04-01 19:38:42 +02:00
parent 95fb7c2624
commit ddf8d59742
3 changed files with 9 additions and 9 deletions

View File

@ -24,7 +24,7 @@ target=_blank>VisualPharm</A>&nbsp;for their great
icon! </DIV>
<LI>
<DIV><A href="http://www.reversinglabs.com/"
target=_blank>ReversingLabs</A>for
target=_blank>ReversingLabs</A>&nbsp;for
TitanEngine! </DIV>
<LI>
<DIV><A
@ -51,4 +51,4 @@ Rogers </DIV>
<DIV>DMichael&nbsp;&nbsp; </DIV>
<LI>
<DIV>Sorry if I forgot
you! </DIV></LI></UL></body></HTML>
you! </DIV></LI></UL></body>

View File

@ -145,7 +145,7 @@ TitleList.Status.4=0
TitleList.Keywords.4=
TitleList.ContextNumber.4=1003
TitleList.ApplyTemp.4=0
TitleList.Expanded.4=1
TitleList.Expanded.4=0
TitleList.Kind.4=0
TitleList.Title.5=Debug Control
TitleList.Level.5=1
@ -525,7 +525,7 @@ TitleList.Status.42=0
TitleList.Keywords.42=
TitleList.ContextNumber.42=1042
TitleList.ApplyTemp.42=0
TitleList.Expanded.42=1
TitleList.Expanded.42=0
TitleList.Kind.42=0
TitleList.Title.43=cmt/cmtset/commentset
TitleList.Level.43=2
@ -885,7 +885,7 @@ TitleList.Status.78=0
TitleList.Keywords.78=
TitleList.ContextNumber.78=1070
TitleList.ApplyTemp.78=0
TitleList.Expanded.78=1
TitleList.Expanded.78=0
TitleList.Kind.78=0
TitleList.Title.79=Jxx/IFxx
TitleList.Level.79=2
@ -975,7 +975,7 @@ TitleList.Status.87=0
TitleList.Keywords.87=
TitleList.ContextNumber.87=1050
TitleList.ApplyTemp.87=0
TitleList.Expanded.87=1
TitleList.Expanded.87=0
TitleList.Kind.87=0
TitleList.Title.88=Exports
TitleList.Level.88=1
@ -985,7 +985,7 @@ TitleList.Status.88=0
TitleList.Keywords.88=
TitleList.ContextNumber.88=1051
TitleList.ApplyTemp.88=0
TitleList.Expanded.88=1
TitleList.Expanded.88=0
TitleList.Kind.88=0
TitleList.Title.89=_plugin_registercallback
TitleList.Level.89=2
@ -1065,7 +1065,7 @@ TitleList.Status.96=0
TitleList.Keywords.96=
TitleList.ContextNumber.96=1059
TitleList.ApplyTemp.96=0
TitleList.Expanded.96=1
TitleList.Expanded.96=0
TitleList.Kind.96=0
TitleList.Title.97=Callbacks
TitleList.Level.97=2

View File

@ -80,5 +80,5 @@ void GotoDialog::on_editExpression_textChanged(const QString &arg1)
bool GotoDialog::IsValidMemoryRange(uint_t addr)
{
return ((validRangeStart || validRangeEnd) && addr >= validRangeStart && addr < validRangeEnd);
return ((!validRangeStart && !validRangeEnd) || (addr >= validRangeStart && addr < validRangeEnd));
}