summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Übelacker <bernhardu@vr-web.de>2019-08-27 18:47:37 +0200
committerAndrej Shadura <andrewsh@debian.org>2019-08-27 18:47:37 +0200
commitcb318898c865dc651afeb5266e5d444acdc0d582 (patch)
tree8ddba5964ac0b9107ec97d1fddb37114b07624fd
parent63e21896411d83b34782d8b11f69ff366b80342c (diff)
Disable check for newer upstream version
Gbp-Pq: Name 12-disable-newer-upstream-version-check.patch
-rw-r--r--src/HexEditorFrame.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/HexEditorFrame.cpp b/src/HexEditorFrame.cpp
index ae92cf3..460f909 100644
--- a/src/HexEditorFrame.cpp
+++ b/src/HexEditorFrame.cpp
@@ -188,6 +188,7 @@ HexEditorFrame::HexEditorFrame( wxWindow* parent,int id ):
MyNotebook->Connect( wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_UP, wxAuiNotebookEventHandler( HexEditorFrame::OnNotebookTabClose ), NULL,this );
MyAUI->Connect( wxEVT_AUI_PANE_CLOSE, wxAuiManagerEventHandler( HexEditorFrame::OnFloatingPaneClosed ), NULL, this );
+#if 0 /* Debian bug #785248 */
bool update_enable = false;
if ( !myConfigBase::Get()->Read(_T("UpdateCheck"), &update_enable )){
update_enable = true;
@@ -206,6 +207,7 @@ HexEditorFrame::HexEditorFrame( wxWindow* parent,int id ):
VersionChecker vc( wxT("http://www.wxhexeditor.org/version.php"), wxT(_VERSION_) );
}
}
+#endif
}