.usvn cosmetics #1275

git-svn-id: svn://ultimatepp.org/upp/trunk@8967 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2015-09-27 13:56:25 +00:00
parent 6670b4baa9
commit 27a912dede
2 changed files with 0 additions and 9 deletions

View file

@ -25,7 +25,6 @@ SvnSync::SvnSync()
list.ColumnWidths("220 500 100");
list.NoCursor().EvenRowColor();
list.SetLineCy(max(Draw::GetStdFontCy(), 20));
list.WhenLeftClick = THISBACK(Diff);
Sizeable().Zoomable();
setup <<= THISBACK(Setup);
BackPaint();
@ -140,13 +139,6 @@ void SvnSync::DoDiff(int ii)
RunSvnDiff(f);
}
void SvnSync::Diff()
{
int cr = list.GetClickRow();
if(cr >= 0)
DoDiff(cr);
}
#ifdef PLATFORM_WIN32
void sDeleteFolderDeep(const char *dir)
{

View file

@ -124,7 +124,6 @@ struct SvnSync : WithSvnSyncLayout<TopWindow> {
void SyncList();
void Setup();
void DoDiff(int ii);
void Diff();
typedef SvnSync CLASSNAME;