~ubuntu-branches/ubuntu/trusty/baloo/trusty

« back to all changes in this revision

Viewing changes to debian/patches/upstream_git/0014-Use-KLocalizedString-instead-of-ki18n.patch

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2014-04-07 12:35:02 UTC
  • Revision ID: package-import@ubuntu.com-20140407123502-96r3nm663m4cm8dz
Tags: 4:4.12.97-0ubuntu2
Blanket import fixes between 4.12.97 and current git KDE/4.13 in
debian/patches/upstream_git/

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From 29a334fe6dfb46fb36d44abd7adae06b47cba723 Mon Sep 17 00:00:00 2001
 
2
From: Vishesh Handa <me@vhanda.in>
 
3
Date: Sat, 29 Mar 2014 13:02:09 +0100
 
4
Subject: [PATCH 14/48] Use KLocalizedString instead of ki18n("")
 
5
 
 
6
---
 
7
 src/file/extractor/main.cpp | 2 +-
 
8
 1 file changed, 1 insertion(+), 1 deletion(-)
 
9
 
 
10
diff --git a/src/file/extractor/main.cpp b/src/file/extractor/main.cpp
 
11
index ec9dce0..4be2c24 100644
 
12
--- a/src/file/extractor/main.cpp
 
13
+++ b/src/file/extractor/main.cpp
 
14
@@ -51,7 +51,7 @@ int main(int argc, char* argv[])
 
15
     options.add("debug", ki18n("Print the data being indexed"));
 
16
     options.add("bdata", ki18n("Print the QVariantMap in Base64 encoding"));
 
17
     // FIXME: Set a proper string after the freeze. This option is just for debugging
 
18
-    options.add("db <url>", ki18n(""));
 
19
+    options.add("db <url>", KLocalizedString());
 
20
 
 
21
     KCmdLineArgs::addCmdLineOptions(options);
 
22
     const KCmdLineArgs* args = KCmdLineArgs::parsedArgs();
 
23
-- 
 
24
1.9.1
 
25