From c7d37e5da206b4c3e32baf5ff74f26fa00d75285 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 1 Aug 2010 17:18:11 +0100 Subject: [PATCH] Remove unneeded source file in sparklediff --- SparkleDiff/LeftRevisionView.cs | 36 ---------------------------- SparkleShare/SparkleIntro.cs | 42 ++++++++++++++++----------------- 2 files changed, 21 insertions(+), 57 deletions(-) delete mode 100644 SparkleDiff/LeftRevisionView.cs diff --git a/SparkleDiff/LeftRevisionView.cs b/SparkleDiff/LeftRevisionView.cs deleted file mode 100644 index 402112be..00000000 --- a/SparkleDiff/LeftRevisionView.cs +++ /dev/null @@ -1,36 +0,0 @@ -// SparkleShare, an instant update workflow to Git. -// Copyright (C) 2010 Hylke Bons -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . - -using Gtk; - -namespace SparkleShare { - - public class LeftRevisionView : RevisionView { - - public LeftRevisionView (string [] revisions) : base (revisions) { - - ComboBox.Active = 1; - - if (Direction == Gtk.TextDirection.Ltr) - ScrolledWindow.Placement = CornerType.TopRight; - else - ScrolledWindow.Placement = CornerType.TopLeft; - - } - - } - -} diff --git a/SparkleShare/SparkleIntro.cs b/SparkleShare/SparkleIntro.cs index d3a94581..06c26d46 100644 --- a/SparkleShare/SparkleIntro.cs +++ b/SparkleShare/SparkleIntro.cs @@ -446,27 +446,6 @@ namespace SparkleShare { } - // Recursively sets access rights of a folder to 'Normal' - private void ClearAttributes (string path) - { - - if (Directory .Exists (path)) { - - string [] folders = Directory .GetDirectories (path); - - foreach (string folder in folders) - ClearAttributes (folder); - - string [] files = Directory .GetFiles(path); - - foreach (string file in files) - File.SetAttributes (file, FileAttributes.Normal); - - } - - } - - private void ShowErrorStep () { @@ -919,6 +898,27 @@ namespace SparkleShare { } + // Recursively sets access rights of a folder to 'Normal' + private void ClearAttributes (string path) + { + + if (Directory.Exists (path)) { + + string [] folders = Directory .GetDirectories (path); + + foreach (string folder in folders) + ClearAttributes (folder); + + string [] files = Directory .GetFiles(path); + + foreach (string file in files) + File.SetAttributes (file, FileAttributes.Normal); + + } + + } + + // Converts a Gdk RGB color to a hex value. // Example: from "rgb:0,0,0" to "#000000" public string GdkColorToHex (Gdk.Color color)