From d31c49c347b757a06ec5a555cd73a0f69556152e Mon Sep 17 00:00:00 2001 From: cxl Date: Thu, 13 Sep 2018 15:40:22 +0000 Subject: [PATCH] .fixed to compile git-svn-id: svn://ultimatepp.org/upp/trunk@12276 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- examples/Scribble/Scribble.upp | 2 +- uppsrc/ide/idetool.cpp | 34 ---------------------------------- 2 files changed, 1 insertion(+), 35 deletions(-) diff --git a/examples/Scribble/Scribble.upp b/examples/Scribble/Scribble.upp index 81c69da98..97af9f4cc 100644 --- a/examples/Scribble/Scribble.upp +++ b/examples/Scribble/Scribble.upp @@ -1,4 +1,4 @@ -description "Simple drawing application"; +description "Simple drawing application\377"; uses CtrlLib; diff --git a/uppsrc/ide/idetool.cpp b/uppsrc/ide/idetool.cpp index 81febee95..42ebe7ac3 100644 --- a/uppsrc/ide/idetool.cpp +++ b/uppsrc/ide/idetool.cpp @@ -415,40 +415,6 @@ INITBLOCK { RegisterGlobalConfig("svn-msgs"); } -/* -bool CheckSvn() -{ - String h; - if(Sys("svn", h) >= 0) - return true; -#ifdef PLATFORM_WIN32 - Exclamation("Unable to execute svn.exe!&" - "You can download svn client here: [^http://www.sliksvn.com/en/download^ http://www.sliksvn.com/en/download]"); -#else - Exclamation("Unable to execute 'svn' binary!&Please install svn client."); -#endif - return false; -} - -bool IsSvnDir(const String& p) -{ - if(IsNull(p)) - return false; - if(DirectoryExists(AppendFileName(p, ".svn")) || DirectoryExists(AppendFileName(p, "_svn"))) - return true; - String path = p; - String path0; - while(path != path0) { - path0 = path; - DirectoryUp(path); - if(DirectoryExists(AppendFileName(path, ".svn"))) - return true; - } - return false; -} - -*/ _DBG_ - void RepoSyncDirs(const Vector& working) { // if(!CheckSvn())