Skip to content

Commit

Permalink
Updated the ExceptionBox modal to reference the GitHub issue tracker,…
Browse files Browse the repository at this point in the history
… instead of the old Sourceforge one.
  • Loading branch information
tmedwards committed Jul 30, 2015
1 parent 30fa16e commit a091819
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CoCEd/View/ExceptionBox.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
Please report this error by copying it and either posting a message in
<Hyperlink NavigateUri="http://forum.fenoxo.com/thread-6324.html" RequestNavigate="requestNavigate">CoCEd's forum thread</Hyperlink>,
at fenoxo.com, or opening a ticket in
<Hyperlink NavigateUri="https://sourceforge.net/p/coced/tickets/" RequestNavigate="requestNavigate">CoCEd's issue tracker</Hyperlink>.
<Hyperlink NavigateUri="https://github.com/tmedwards/CoCEd/issues" RequestNavigate="requestNavigate">CoCEd's issue tracker</Hyperlink>.
(Error also saved to the CoCEd.log file.)
<LineBreak/><LineBreak/>
Providing the save file which caused the error could also be helpful.
Expand Down Expand Up @@ -84,7 +84,7 @@
<TextBlock Text="Links:" FontWeight="Bold"/>
<Hyperlink NavigateUri="http://forum.fenoxo.com/thread-6324.html" RequestNavigate="requestNavigate">CoCEd's forum thread</Hyperlink>
&amp;
<Hyperlink NavigateUri="https://sourceforge.net/p/coced/tickets/" RequestNavigate="requestNavigate">CoCEd's issue tracker</Hyperlink>
<Hyperlink NavigateUri="https://github.com/tmedwards/CoCEd/issues" RequestNavigate="requestNavigate">CoCEd's issue tracker</Hyperlink>
</TextBlock>

<StackPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="10" x:Name="buttonStack"/>
Expand Down
9 changes: 1 addition & 8 deletions CoCEd/View/ExceptionBox.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public string ExceptionMessage
public ExceptionBoxResult ShowDialog(params ExceptionBoxButtons[] buttons)
{
// CoCEd thread : http://forum.fenoxo.com/thread-6324.html
// CoCEd tracker : https://sourceforge.net/p/coced/tickets/
// CoCEd tracker : https://github.com/tmedwards/CoCEd/issues
if (App.Current.MainWindow != this)
{
Owner = App.Current.MainWindow;
Expand All @@ -121,13 +121,6 @@ public ExceptionBoxResult ShowDialog(params ExceptionBoxButtons[] buttons)
if (ShowReportInstructions) reportingGrid.Visibility = Visibility.Visible;
else reportingGrid.Visibility = Visibility.Collapsed;

// Why the heck were the checks against Path doubled? Were two different paths being checked at one time
// and this simply wasn't cleaned up when that was changed maybe? I don't know, but I'm excising it for now.
/*
if (String.IsNullOrEmpty(Path) && String.IsNullOrEmpty(Path)) folderGrid.Visibility = Visibility.Collapsed;
else if (!String.IsNullOrEmpty(Path)) folderText.Text = Path;
else if (!String.IsNullOrEmpty(Path)) folderText.Text = Path;
*/
if (String.IsNullOrEmpty(Path)) folderGrid.Visibility = Visibility.Collapsed;
else if (!String.IsNullOrEmpty(Path)) folderText.Text = Path;

Expand Down

0 comments on commit a091819

Please sign in to comment.