diff options
author | John Ankarström <john@ankarstrom.se> | 2022-03-30 20:15:52 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-03-30 20:15:52 +0200 |
commit | c9b8d278883a90f534f30f0830bb003460310823 (patch) | |
tree | 009344dc7955e0c971d1c5bac102f7805ea363aa /c/datalistview.c | |
parent | d1bfa9c377b63ee051e668e8bb60f6051c65787d (diff) | |
download | EpisodeBrowser-c9b8d278883a90f534f30f0830bb003460310823.tar.gz |
Disregard foreign frames.
I don't think they're necessary.
Diffstat (limited to 'c/datalistview.c')
-rw-r--r-- | c/datalistview.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/c/datalistview.c b/c/datalistview.c index 9911887..99c3eed 100644 --- a/c/datalistview.c +++ b/c/datalistview.c @@ -32,7 +32,6 @@ DlvCreate() void DlvShowEpisode(int iEpisode) { - fid_t f; LVITEM lviKey, lviValue; term_t t; @@ -41,10 +40,9 @@ DlvShowEpisode(int iEpisode) lviKey.mask = LVIF_TEXT; lviValue.mask = LVIF_TEXT; - F(f); t = T(3); - PI(t,iEpisode) goto e; - P("episode_data","lookup_episode_local",3,t) goto e; + PI(t,iEpisode) return; + P("episode_data","lookup_episode_local",3,t) return; /* The episode data is a list of unary compounds, * whose functor is the key and whose argument is the value. @@ -95,6 +93,4 @@ n: free(tszKey); } UpdateLayout(); - -e: Fd(f); } |