@@ -410,10 +410,10 @@ private async void MetroWindowMain_Closing(object sender, CancelEventArgs e)
410410 RemoteDesktopView remoteDesktopView ;
411411 SNMPView snmpView ;
412412 WakeOnLANView wakeOnLANView ;
413- SubnetCalculatorView subnetCalculatorView ;
413+ SubnetCalculatorHostView subnetCalculatorHostView ;
414414 HTTPHeadersView httpHeadersView ;
415415 ARPTableView arpTableView ;
416- LookupView lookupView ;
416+ LookupHostView lookupHostView ;
417417
418418 private ApplicationViewManager . Name ? currentApplicationViewName = null ;
419419
@@ -479,10 +479,10 @@ private void ChangeApplicationView(ApplicationViewManager.Name name)
479479 contentControlApplication . Content = wakeOnLANView ;
480480 break ;
481481 case ApplicationViewManager . Name . SubnetCalculator :
482- if ( subnetCalculatorView == null )
483- subnetCalculatorView = new SubnetCalculatorView ( ) ;
482+ if ( subnetCalculatorHostView == null )
483+ subnetCalculatorHostView = new SubnetCalculatorHostView ( ) ;
484484
485- contentControlApplication . Content = subnetCalculatorView ;
485+ contentControlApplication . Content = subnetCalculatorHostView ;
486486 break ;
487487 case ApplicationViewManager . Name . HTTPHeaders :
488488 if ( httpHeadersView == null )
@@ -497,10 +497,10 @@ private void ChangeApplicationView(ApplicationViewManager.Name name)
497497 contentControlApplication . Content = arpTableView ;
498498 break ;
499499 case ApplicationViewManager . Name . Lookup :
500- if ( lookupView == null )
501- lookupView = new LookupView ( ) ;
500+ if ( lookupHostView == null )
501+ lookupHostView = new LookupHostView ( ) ;
502502
503- contentControlApplication . Content = lookupView ;
503+ contentControlApplication . Content = lookupHostView ;
504504 break ;
505505 }
506506
0 commit comments