Browse Source

missed to commit some changes (never commit around 12 PM!)

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@4875 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Siegfried Pammer 17 years ago
parent
commit
213808103c
  1. 4
      src/AddIns/Misc/Profiler/Frontend/AddIn/Src/Dialogs/ProfilerControlWindow.xaml
  2. 4
      src/AddIns/Misc/Profiler/Frontend/Controls/QueryView.xaml.cs

4
src/AddIns/Misc/Profiler/Frontend/AddIn/Src/Dialogs/ProfilerControlWindow.xaml

@ -17,12 +17,12 @@ @@ -17,12 +17,12 @@
HorizontalAlignment="Left"
VerticalAlignment="Stretch">
<ToggleButton
Content="CollectData"
Content="{sd:Localize AddIns.Profiler.ProfilerControlWindow.CollectData}"
x:Name="collectData"
Checked="CollectDataChecked"
Unchecked="CollectDataUnchecked" />
<Button
Content="Shutdown"
Content="{sd:Localize AddIns.Profiler.ProfilerControlWindow.Shutdown}"
x:Name="shutdown"
Click="ShutdownClick" />
</ToolBar>

4
src/AddIns/Misc/Profiler/Frontend/Controls/QueryView.xaml.cs

@ -84,7 +84,7 @@ namespace ICSharpCode.Profiler.Controls @@ -84,7 +84,7 @@ namespace ICSharpCode.Profiler.Controls
AdornerLayer layer = AdornerLayer.GetAdornerLayer(this);
OverlayAdorner ad = new OverlayAdorner(this);
WaitBar bar = new WaitBar();
WaitBar bar = new WaitBar(Translation.WaitBarText);
ad.Child = bar;
layer.Add(ad);
@ -220,7 +220,7 @@ namespace ICSharpCode.Profiler.Controls @@ -220,7 +220,7 @@ namespace ICSharpCode.Profiler.Controls
{
AdornerLayer layer = AdornerLayer.GetAdornerLayer(this);
OverlayAdorner ad = new OverlayAdorner(this);
WaitBar bar = new WaitBar("Refreshing view, please wait ...");
WaitBar bar = new WaitBar(Translation.WaitBarText);
ad.Child = bar;
layer.Add(ad);
int rangeStart = RangeStart;

Loading…
Cancel
Save