remove destructors overwrite

This commit is contained in:
yggverse 2024-09-05 01:40:56 +03:00
parent 1ec685cabe
commit 207d5079a7
18 changed files with 6 additions and 42 deletions

View file

@ -15,6 +15,4 @@ Base::Base()
set_tooltip_text(
_("Base")
);
}
Base::~Base() = default;
}

View file

@ -11,8 +11,6 @@ namespace app::browser::main::tab::page::navigation
public:
Base();
~Base();
};
}

View file

@ -15,6 +15,4 @@ Bookmark::Bookmark()
set_tooltip_text(
_("Toggle bookmark")
);
}
Bookmark::~Bookmark() = default;
}

View file

@ -11,8 +11,6 @@ namespace app::browser::main::tab::page::navigation
public:
Bookmark();
~Bookmark();
};
}

View file

@ -29,5 +29,3 @@ Back::Back()
}
);
}
Back::~Back() = default;

View file

@ -11,8 +11,6 @@ namespace app::browser::main::tab::page::navigation::history
public:
Back();
~Back();
};
}

View file

@ -28,6 +28,4 @@ Forward::Forward()
);
}
);
}
Forward::~Forward() = default;
}

View file

@ -11,8 +11,6 @@ namespace app::browser::main::tab::page::navigation::history
public:
Forward();
~Forward();
};
}