Skip to content

Commit

Permalink
Clean NFrame::FrameRefreshStatus.
Browse files Browse the repository at this point in the history
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
  • Loading branch information
audetto committed Jan 3, 2022
1 parent dadba55 commit 8de697f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/frontends/ncurses/nframe.cpp
Expand Up @@ -197,7 +197,7 @@ namespace na2
wrefresh(myFrame.get());
}

void NFrame::FrameRefreshStatus(int drawflags)
void NFrame::FrameRefreshStatus(int /* drawflags */)
{
werase(myStatus.get());
box(myStatus.get(), 0 , 0);
Expand Down
2 changes: 1 addition & 1 deletion source/frontends/ncurses/nframe.h
Expand Up @@ -25,7 +25,7 @@ namespace na2
void Destroy() override;
void VideoPresentScreen() override;
int FrameMessageBox(LPCSTR lpText, LPCSTR lpCaption, UINT uType) override;
void FrameRefreshStatus(int drawflags);
void FrameRefreshStatus(int drawflags) override;

void ProcessEvDev();

Expand Down

0 comments on commit 8de697f

Please sign in to comment.