~ubuntu-branches/ubuntu/trusty/bibletime/trusty

« back to all changes in this revision

Viewing changes to src/backend/managers/referencemanager.cpp

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs, Jonathan Marsden, Dmitrijs Ledkovs
  • Date: 2012-04-14 18:11:50 UTC
  • mfrom: (1.3.7)
  • Revision ID: package-import@ubuntu.com-20120414181150-17l2liq7bl7oaxjz
Tags: 2.9.1-1
[ Jonathan Marsden ]
* New upstream version 2.9.1
* debian/patches/*: Remove all patches (incorporated upstream)
* debian/control: bibletime now depends on a matching version of
  bibletime-data.

[ Dmitrijs Ledkovs ]
* Add more strict alternative build-dependency on the libqt4-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
250
250
    switch (type) {
251
251
 
252
252
        case ReferenceManager::Bible:
253
 
 
254
 
            module = CBTConfig::get
255
 
                     ( CBTConfig::standardBible );
256
 
 
 
253
            module = CBTConfig::get(CBTConfig::standardBible);
257
254
            break;
258
255
 
259
256
        case ReferenceManager::Commentary:
260
 
            module = CBTConfig::get
261
 
                     ( CBTConfig::standardCommentary );
262
 
 
 
257
            module = CBTConfig::get(CBTConfig::standardCommentary);
263
258
            break;
264
259
 
265
260
        case ReferenceManager::Lexicon:
266
 
            module = CBTConfig::get
267
 
                     ( CBTConfig::standardLexicon );
268
 
 
 
261
            module = CBTConfig::get(CBTConfig::standardLexicon);
269
262
            break;
270
263
 
271
264
        case ReferenceManager::StrongsHebrew:
272
 
            module = CBTConfig::get
273
 
                     ( CBTConfig::standardHebrewStrongsLexicon );
274
 
 
 
265
            module = CBTConfig::get(CBTConfig::standardHebrewStrongsLexicon);
275
266
            break;
276
267
 
277
268
        case ReferenceManager::StrongsGreek:
278
 
            module = CBTConfig::get
279
 
                     ( CBTConfig::standardGreekStrongsLexicon );
280
 
 
 
269
            module = CBTConfig::get(CBTConfig::standardGreekStrongsLexicon);
281
270
            break;
282
271
 
283
272
        case ReferenceManager::MorphHebrew:
284
 
            module = CBTConfig::get
285
 
                     ( CBTConfig::standardHebrewMorphLexicon );
286
 
 
 
273
            module = CBTConfig::get(CBTConfig::standardHebrewMorphLexicon);
287
274
            break;
288
275
 
289
276
        case ReferenceManager::MorphGreek:
290
 
            module = CBTConfig::get
291
 
                     ( CBTConfig::standardGreekMorphLexicon );
292
 
 
 
277
            module = CBTConfig::get(CBTConfig::standardGreekMorphLexicon);
293
278
            break;
294
279
 
295
280
        default:
296
281
            module = 0;
297
 
 
298
282
            break;
299
283
    }
300
284