summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Übelacker <bernhardu@vr-web.de>2018-09-14 18:27:02 +0200
committerAndrej Shadura <andrewsh@debian.org>2018-09-14 18:27:02 +0200
commitdcad7aef12a874f19a278ff22ed076c51b6970e3 (patch)
tree5327f1d120bdb48738944570b9a0fcd1ba25d591
parentdadbc9b76e7774e7adcb62406d750dc27c8ea4e4 (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 6b0799a..23cfe6b 100644
--- a/src/HexEditorFrame.cpp
+++ b/src/HexEditorFrame.cpp
@@ -180,6 +180,7 @@ HexEditorFrame::HexEditorFrame( wxWindow* parent,int id ):
MyNotebook->Connect( wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED, wxAuiNotebookEventHandler( HexEditorFrame::OnNotebookTabSelection ), NULL,this );
MyNotebook->Connect( wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_UP, wxAuiNotebookEventHandler( HexEditorFrame::OnNotebookTabClose ), NULL,this );
+#if 0 /* Debian bug #785248 */
bool update_enable = false;
if ( not wxConfigBase::Get()->Read(_T("UpdateCheck"), &update_enable )){
update_enable = true;
@@ -198,6 +199,7 @@ HexEditorFrame::HexEditorFrame( wxWindow* parent,int id ):
VersionChecker vc( wxT("http://wxhexeditor.sourceforge.net/version.php"), wxT(_VERSION_) );
}
}
+#endif
}