diff options
author | John Ankarström <john@ankarstrom.se> | 2022-07-30 00:01:49 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-07-30 00:01:49 +0200 |
commit | babbd4c9c26d997683280ac663e03b04910b2826 (patch) | |
tree | af42a3239ee6dd7bfcd0b762b0b91557b3996937 /c/datalistview.cpp | |
parent | 2b8b6ac284dca2bd22514d293519cb877a1079d8 (diff) | |
download | EpisodeBrowser-babbd4c9c26d997683280ac663e03b04910b2826.tar.gz |
Formatting.
This style is more compact and quicker to read once you know what the
first two member in LVITEM are (mask and iItem).
Diffstat (limited to 'c/datalistview.cpp')
-rw-r--r-- | c/datalistview.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/c/datalistview.cpp b/c/datalistview.cpp index a091ace..fd37791 100644 --- a/c/datalistview.cpp +++ b/c/datalistview.cpp @@ -44,16 +44,14 @@ void DataListView::ShowEpisode(const int iEpisode) ListView_DeleteAllItems(hWnd); - LVITEM lviKey, lviValue; - lviKey.mask = LVIF_TEXT; - lviValue.mask = LVIF_TEXT; - Frame f; const int iArity = 3; const term_t t = PL_new_term_refs(iArity); if (!PlPut(t, iEpisode)) return; Query q (NULL, PL_predicate("episode_datum", iArity, "episode_data"), t); + LVITEM lviKey = {LVIF_TEXT}; + LVITEM lviValue = {LVIF_TEXT}; for (int i = 0; q.NextSolution(); i++) { std::wstring wsKey; @@ -62,7 +60,6 @@ void DataListView::ShowEpisode(const int iEpisode) if (!(PlGet(t+1, &wsKey) && PlGet(t+2, &wsValue))) continue; - lviKey.mask = LVIF_TEXT; lviKey.iItem = i; lviKey.iSubItem = 0; lviKey.pszText = wsKey.data(); |