mac: Fix build for newer versions of MonoMac

This commit is contained in:
Hylke Bons 2012-04-10 18:15:17 +02:00
parent b85014303e
commit 87f85a38ce
3 changed files with 8 additions and 8 deletions

8
.gitignore vendored
View file

@ -46,10 +46,10 @@ build/m4/shave/shave-libtool
SparkleLib/Defines.cs SparkleLib/Defines.cs
SparkleLib/windows/Defines.cs SparkleLib/windows/Defines.cs
SparkleLib/windows/GlobalAssemblyInfo.cs SparkleLib/windows/GlobalAssemblyInfo.cs
SparkleShare/sparkleshare SparkleShare/Linux/sparkleshare
po/sparkleshare.pot po/sparkleshare.pot
SparkleShare/Nautilus/sparkleshare-nautilus-extension.py SparkleShare/Linux/Nautilus/sparkleshare-nautilus-extension.py
SparkleShare/Nautilus/sparkleshare-nautilus3-extension.py SparkleShare/Linux/Nautilus/sparkleshare-nautilus3-extension.py
gnome-doc-utils.make gnome-doc-utils.make
/sparkleshare-* /sparkleshare-*
data/plugins/*.xml data/plugins/*.xml
@ -58,4 +58,4 @@ _ReSharper.*
*.msi *.msi
*.wixobj *.wixobj
*.wixpdb *.wixpdb
*.wxs *.wxs

View file

@ -863,7 +863,7 @@ namespace SparkleShare {
mutable_attributes.Append (new NSAttributedString ("\n")); mutable_attributes.Append (new NSAttributedString ("\n"));
mutable_attributes.Append (description_attributes); mutable_attributes.Append (description_attributes);
cell.SetAttributedStringValue (mutable_attributes); cell.AttributedStringValue = mutable_attributes;
Cells [i] = (NSAttributedString) cell.ObjectValue; Cells [i] = (NSAttributedString) cell.ObjectValue;
@ -890,7 +890,7 @@ namespace SparkleShare {
selected_mutable_attributes.Append (new NSAttributedString ("\n")); selected_mutable_attributes.Append (new NSAttributedString ("\n"));
selected_mutable_attributes.Append (selected_description_attributes); selected_mutable_attributes.Append (selected_description_attributes);
selected_cell.SetAttributedStringValue (selected_mutable_attributes); selected_cell.AttributedStringValue = selected_mutable_attributes;
SelectedCells [i] = (NSAttributedString) selected_cell.ObjectValue; SelectedCells [i] = (NSAttributedString) selected_cell.ObjectValue;
i++; i++;

4
SparkleShare/Mac/SparkleShare.csproj Executable file → Normal file
View file

@ -6,7 +6,7 @@
<ProductVersion>10.0.0</ProductVersion> <ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion> <SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{CF5BC8DB-A633-4FCC-8A3E-E3AC9B59FABC}</ProjectGuid> <ProjectGuid>{CF5BC8DB-A633-4FCC-8A3E-E3AC9B59FABC}</ProjectGuid>
<ProjectTypeGuids>{1C533B1C-72DD-4CB1-9F6B-BF11D93BCFBE};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<RootNamespace>SparkleShare</RootNamespace> <RootNamespace>SparkleShare</RootNamespace>
<AssemblyName>SparkleShare</AssemblyName> <AssemblyName>SparkleShare</AssemblyName>
@ -120,7 +120,7 @@
</Compile> </Compile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Page Include="MainMenu.xib" /> <InterfaceDefinition Include="MainMenu.xib" xmlns="" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Include="Info.plist" /> <None Include="Info.plist" />