aboutsummaryrefslogtreecommitdiff
path: root/mods.cc
diff options
context:
space:
mode:
authorYour Name <you@example.com>2020-11-18 11:42:13 -0500
committerYour Name <you@example.com>2020-11-18 11:42:13 -0500
commit821ec1b72e341617a2ed1b95d6a7d18e8eebbc4b (patch)
treeab1cfc4be3baf7f61d13a5975799e42ea7a013c0 /mods.cc
parent89a449c2ab9d736c1f03c78b745e814424e01360 (diff)
downloadbiblereader-821ec1b72e341617a2ed1b95d6a7d18e8eebbc4b.tar.gz
biblereader-821ec1b72e341617a2ed1b95d6a7d18e8eebbc4b.tar.bz2
biblereader-821ec1b72e341617a2ed1b95d6a7d18e8eebbc4b.zip
Updated to latest libbible API
Diffstat (limited to 'mods.cc')
-rw-r--r--mods.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/mods.cc b/mods.cc
index e1228aa..99985b6 100644
--- a/mods.cc
+++ b/mods.cc
@@ -65,6 +65,7 @@ void Mods::endProgress() {
}
Mods::Mods(Header *header, Gtk::Window *window) : modsAvailable(), progressDialog("", false, Gtk::MessageType::MESSAGE_INFO, Gtk::ButtonsType::BUTTONS_CANCEL), progressBar(), dispatcher(), progressMutex(), worker(nullptr) {
+ libbible::setStatusReporter(*this);
this->header = header;
this->window = window;
dispatcher.connect(sigc::mem_fun(*this, &Mods::onNotify));
@@ -204,5 +205,5 @@ void Mods::updateInstallable() {
if(! modsAvailable.empty()) {
return;
}
- modsAvailable = libbible::downloadModsAvailable(this);
+ modsAvailable = libbible::downloadModsAvailable();
}