Skip to content

Commit

Permalink
Fix bad method name
Browse files Browse the repository at this point in the history
  • Loading branch information
abique committed May 4, 2024
1 parent bf1dfbc commit 9ea5331
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/clap/helpers/host-proxy.hh
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ namespace clap { namespace helpers {
////////////////////
// clap_host_undo //
////////////////////
bool canUseHostUndo() const noexcept;
bool canUseUndo() const noexcept;
void undoBeginChange() const noexcept;
void undoCancelChange() const noexcept;
void undoChangeMade(const char *name,
Expand Down
2 changes: 1 addition & 1 deletion include/clap/helpers/host-proxy.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ namespace clap { namespace helpers {
// clap_host_undo //
////////////////////
template <MisbehaviourHandler h, CheckingLevel l>
bool HostProxy<h, l>::canUseHostUndo() const noexcept {
bool HostProxy<h, l>::canUseUndo() const noexcept {
if (!_hostUndo)
return false;

Expand Down

0 comments on commit 9ea5331

Please sign in to comment.