Skip to content

Commit 9f9e306

Browse files
committed
Fix missing include statements
1 parent c3ba3cf commit 9f9e306

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/LanguageDialog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public LanguageDialog()
2020
{
2121
InitializeComponent();
2222
Localization.TranslateForm(this);
23-
this.linkLabel1.LinkColor = SystemColors.HotTrack;
23+
this.linkLabel1.LinkColor = System.Drawing.SystemColors.HotTrack;
2424
}
2525

2626
private void LanguageDialog_Load(object sender, EventArgs e)

src/Localization.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using NGettext;
66
using RestSharp;
77
using System;
8+
using System.Collections.Generic;
89
using System.Globalization;
910
using System.IO;
1011
using System.Linq;

0 commit comments

Comments
 (0)