rereference libs

This commit is contained in:
Hylke Bons 2010-05-14 14:34:48 +01:00
parent 1fdb48415c
commit f08ce00f7d
4 changed files with 9 additions and 9 deletions

View file

@ -1,4 +1,3 @@

Microsoft Visual Studio Solution File, Format Version 9.00 Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005 # Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SparkleShare", "SparkleShare\SparkleShare.csproj", "{728483AA-E34B-4441-BF2C-C8BC2901E4E0}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SparkleShare", "SparkleShare\SparkleShare.csproj", "{728483AA-E34B-4441-BF2C-C8BC2901E4E0}"
@ -19,4 +18,4 @@ Global
version = 0.1 version = 0.1
StartupItem = SparkleShare\SparkleShare.csproj StartupItem = SparkleShare\SparkleShare.csproj
EndGlobalSection EndGlobalSection
EndGlobal EndGlobal

View file

@ -8,6 +8,7 @@
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<AssemblyName>SparkleShare</AssemblyName> <AssemblyName>SparkleShare</AssemblyName>
<SchemaVersion>2.0</SchemaVersion> <SchemaVersion>2.0</SchemaVersion>
<RootNamespace>SparkleShare</RootNamespace>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols> <DebugSymbols>true</DebugSymbols>

View file

@ -130,6 +130,13 @@ namespace SparkleShare {
public void StartMonitoring () { } public void StartMonitoring () { }
public void StopMonitoring () { } public void StopMonitoring () { }
// Quits the program
public void Quit (object o, EventArgs args) {
File.Delete (SparkleHelpers.CombineMore (SparklePaths.SparkleTmpPath +
"sparkleshare.pid"));
Application.Quit ();
}
} }
} }

View file

@ -455,13 +455,6 @@ namespace SparkleShare {
} else SparkleDialog = new SparkleDialog (this); } else SparkleDialog = new SparkleDialog (this);
} }
// Quits the program
public void Quit (object o, EventArgs args) {
File.Delete (SparkleHelpers.CombineMore (SparklePaths.SparkleTmpPath +
"sparkleshare.pid"));
Application.Quit ();
}
} }
} }