]> git.pld-linux.org Git - packages/kde4-calligra.git/blob - calligra-icu.patch
- added icu,boost patches to fix build with icu 64/boost 1.70
[packages/kde4-calligra.git] / calligra-icu.patch
1 --- calligra-2.8.7/libs/db/tableviewdata.cpp.orig       2014-11-30 15:02:20.000000000 +0100
2 +++ calligra-2.8.7/libs/db/tableviewdata.cpp    2019-04-19 20:57:59.892689347 +0200
3 @@ -51,7 +51,7 @@
4  public:
5      CollatorInstance() {
6          UErrorCode status = U_ZERO_ERROR;
7 -        m_collator = Collator::createInstance(status);
8 +        m_collator = icu::Collator::createInstance(status);
9          if (U_FAILURE(status)) {
10              kWarning() << "Could not create instance of collator: " << status;
11              m_collator = NULL;
12 @@ -63,7 +63,7 @@
13              kWarning() << "Could not set collator attribute: " << status;
14      }
15  
16 -    Collator* getCollator() {
17 +    icu::Collator* getCollator() {
18          return m_collator;
19      }
20  
21 @@ -72,7 +72,7 @@
22      }
23  
24  private:
25 -    Collator *m_collator;
26 +    icu::Collator *m_collator;
27  };
28  
29  K_GLOBAL_STATIC(CollatorInstance, _collator)
30 @@ -161,7 +161,7 @@
31      static  bool cmpStringWithCollator(const QVariant& left, const QVariant& right) {
32          const QString &as = left.toString();
33          const QString &bs = right.toString();
34 -        return (Collator::LESS == _collator->getCollator()->compare((const UChar *)as.constData(), as.size(),
35 +        return (icu::Collator::LESS == _collator->getCollator()->compare((const UChar *)as.constData(), as.size(),
36                  (const UChar *)bs.constData(), bs.size())) ? true : false;
37      }
38  
This page took 0.024624 seconds and 3 git commands to generate.