Skip to content

Commit

Permalink
[firebase][database] Fixed a syntax bug in sample
Browse files Browse the repository at this point in the history
  • Loading branch information
SotoiGhost committed Jun 30, 2017
1 parent 51786a9 commit a832a7d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void InitializeComponents ()
lblNotesCount = new UILabel (new CGRect (0, 0, 50, 15)) {
Font = UIFont.SystemFontOfSize (12)
};
lblNotesCount.Text = $"{count} note{count != 1 ? "s" : ""}";
lblNotesCount.Text = $"{count} note" + (count != 1 ? "s" : "");
var btnNotesCount = new UIBarButtonItem (lblNotesCount);

btnNewNote = new UIBarButtonItem (UIBarButtonSystemItem.Compose, btnNewNote_Clicked) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
<MtouchDebug>true</MtouchDebug>
<MtouchFastDev>false</MtouchFastDev>
<MtouchProfiling>true</MtouchProfiling>
<MtouchUseSGen>true</MtouchUseSGen>
<MtouchUseRefCounting>true</MtouchUseRefCounting>
<MtouchLink>None</MtouchLink>
<MtouchArch>i386</MtouchArch>
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
Expand All @@ -39,8 +37,6 @@
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<CodesignKey>iPhone Developer</CodesignKey>
<MtouchUseSGen>true</MtouchUseSGen>
<MtouchUseRefCounting>true</MtouchUseRefCounting>
<MtouchFloat32>true</MtouchFloat32>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchLink>SdkOnly</MtouchLink>
Expand All @@ -56,8 +52,6 @@
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<CodesignKey>iPhone Developer</CodesignKey>
<MtouchUseSGen>true</MtouchUseSGen>
<MtouchUseRefCounting>true</MtouchUseRefCounting>
<MtouchLink>None</MtouchLink>
<MtouchArch>i386</MtouchArch>
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
Expand All @@ -78,8 +72,6 @@
<MtouchDebug>true</MtouchDebug>
<MtouchFastDev>false</MtouchFastDev>
<MtouchProfiling>true</MtouchProfiling>
<MtouchUseSGen>true</MtouchUseSGen>
<MtouchUseRefCounting>true</MtouchUseRefCounting>
<MtouchFloat32>true</MtouchFloat32>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchLink>SdkOnly</MtouchLink>
Expand Down

0 comments on commit a832a7d

Please sign in to comment.