Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
Fix bugged filter lists in open file dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
poppeman committed Aug 27, 2016
1 parent e010294 commit 5db99d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Pictus/filterstring.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ namespace App {
match_all += "*." + exts[j];
filters += "*." + exts[j];
}
pretty_filter << filters << ")" << 0 << filters << 0;
pretty_filter << filters << ")" << (char)0 << filters << (char)0;
}
pretty_filter << Intl::GetString(App::SIDOpenAllImages) << " (" << match_all << ")" << 0 << match_all << 0 << 0;
pretty_filter << Intl::GetString(App::SIDOpenAllImages) << " (" << match_all << ")" << (char)0 << match_all << (char)0 << (char)0;

return pretty_filter.str();
}
Expand Down

0 comments on commit 5db99d4

Please sign in to comment.