Browse Source

Fixed build.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5618 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Daniel Grunwald 16 years ago
parent
commit
28321ee32c
  1. 7
      src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/HistoryViewPanel.cs

7
src/AddIns/Misc/SubversionAddIn/Project/Src/Gui/HistoryViewDisplayBinding/HistoryViewPanel.cs

@ -23,7 +23,6 @@ namespace ICSharpCode.Svn
string fileName; string fileName;
InfoPanel infoPanel; InfoPanel infoPanel;
DiffPanel diffPanel = null;
public HistoryViewPanel(string fileName) public HistoryViewPanel(string fileName)
{ {
@ -115,9 +114,9 @@ namespace ICSharpCode.Svn
if (infoPanel != null) { if (infoPanel != null) {
WorkbenchSingleton.SafeThreadAsyncCall(infoPanel.AddLogMessage, logMessage); WorkbenchSingleton.SafeThreadAsyncCall(infoPanel.AddLogMessage, logMessage);
} }
if (diffPanel != null) { // if (diffPanel != null) {
WorkbenchSingleton.SafeThreadAsyncCall(diffPanel.AddLogMessage, logMessage); // WorkbenchSingleton.SafeThreadAsyncCall(diffPanel.AddLogMessage, logMessage);
} // }
} }
} }
} }

Loading…
Cancel
Save