diff options
| author | Your Name <you@example.com> | 2020-11-18 11:42:13 -0500 | 
|---|---|---|
| committer | Your Name <you@example.com> | 2020-11-18 11:42:13 -0500 | 
| commit | 821ec1b72e341617a2ed1b95d6a7d18e8eebbc4b (patch) | |
| tree | ab1cfc4be3baf7f61d13a5975799e42ea7a013c0 /mods.cc | |
| parent | 89a449c2ab9d736c1f03c78b745e814424e01360 (diff) | |
| download | biblereader-821ec1b72e341617a2ed1b95d6a7d18e8eebbc4b.tar.gz biblereader-821ec1b72e341617a2ed1b95d6a7d18e8eebbc4b.tar.bz2 biblereader-821ec1b72e341617a2ed1b95d6a7d18e8eebbc4b.zip  | |
Updated to latest libbible API
Diffstat (limited to 'mods.cc')
| -rw-r--r-- | mods.cc | 3 | 
1 files changed, 2 insertions, 1 deletions
@@ -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();  }  | 
