@@ -210,7 +210,7 @@ private void ReQuery()
210
210
{
211
211
if ( SelectedIsFromQueryResults ( ) )
212
212
{
213
- QueryResults ( reQuery : true ) ;
213
+ QueryResults ( isReQuery : true ) ;
214
214
}
215
215
}
216
216
@@ -504,8 +504,8 @@ private void UpdatePreview()
504
504
/// but we don't want to move cursor to end when query is updated from TextBox
505
505
/// </summary>
506
506
/// <param name="queryText"></param>
507
- /// <param name="reQuery ">Force query even when Query Text doesn't change</param>
508
- public void ChangeQueryText ( string queryText , bool reQuery = false )
507
+ /// <param name="isReQuery ">Force query even when Query Text doesn't change</param>
508
+ public void ChangeQueryText ( string queryText , bool isReQuery = false )
509
509
{
510
510
Application . Current . Dispatcher . Invoke ( ( ) =>
511
511
{
@@ -519,9 +519,9 @@ public void ChangeQueryText(string queryText, bool reQuery = false)
519
519
QueryTextCursorMovedToEnd = false ;
520
520
521
521
}
522
- else if ( reQuery )
522
+ else if ( isReQuery )
523
523
{
524
- Query ( reQuery : true ) ;
524
+ Query ( isReQuery : true ) ;
525
525
}
526
526
QueryTextCursorMovedToEnd = true ;
527
527
} ) ;
@@ -621,11 +621,11 @@ public string PreviewHotkey
621
621
622
622
#region Query
623
623
624
- public void Query ( bool reQuery = false )
624
+ public void Query ( bool isReQuery = false )
625
625
{
626
626
if ( SelectedIsFromQueryResults ( ) )
627
627
{
628
- QueryResults ( reQuery ) ;
628
+ QueryResults ( isReQuery ) ;
629
629
}
630
630
else if ( ContextMenuSelected ( ) )
631
631
{
@@ -725,7 +725,7 @@ private void QueryHistory()
725
725
726
726
private readonly IReadOnlyList < Result > _emptyResult = new List < Result > ( ) ;
727
727
728
- private async void QueryResults ( bool reQuery = false )
728
+ private async void QueryResults ( bool isReQuery = false )
729
729
{
730
730
_updateSource ? . Cancel ( ) ;
731
731
@@ -757,7 +757,7 @@ private async void QueryResults(bool reQuery = false)
757
757
return ;
758
758
759
759
// Update the query's IsReQuery property to true if this is a re-query
760
- query . IsReQuery = reQuery ;
760
+ query . IsReQuery = isReQuery ;
761
761
762
762
// handle the exclusiveness of plugin using action keyword
763
763
RemoveOldQueryResults ( query ) ;
0 commit comments