Skip to content

Commit

Permalink
fix msbuild error (oddly enough this was okay in MSVC2019 and compile…
Browse files Browse the repository at this point in the history
…d fine in the ID, but the NANT task via `./build-installer.sh` fails. :-S )
  • Loading branch information
GerHobbelt committed Aug 5, 2019
1 parent 6dcc971 commit 542fc81
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Qiqqa.Documents.PDF;
using Utilities.BibTex.Parsing;
using Utilities.GUI;
using static Qiqqa.DocumentLibrary.LibraryDB;
using Qiqqa.DocumentLibrary;

namespace Qiqqa.DocumentLibrary.LibraryDBStuff
{
Expand Down Expand Up @@ -76,7 +76,7 @@ void ButtonGet_Click(object sender, RoutedEventArgs e)
allstr.Append("\n\n==========================================================\n\n");
}

LibraryItem item = items[i];
LibraryDB.LibraryItem item = items[i];
byte[] data = item.data;
string json = Encoding.UTF8.GetString(data);
allstr.AppendLine(json);
Expand Down

0 comments on commit 542fc81

Please sign in to comment.