~ubuntu-branches/ubuntu/natty/kadu/natty

« back to all changes in this revision

Viewing changes to debian/patches/99-gcc4.4-build-fix2.patch

  • Committer: Bazaar Package Importer
  • Author(s): Patryk Cisek
  • Date: 2009-09-15 12:51:15 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090915125115-l27alsk5v3i8d9s6
Tags: 0.6.5.3-2
Added debian/patches/05-lib64-suffix-fix.patch to fix FTBFS on 64-bit
architectures

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Description: Fix the following compilation error: "profiles.cpp:673: error: 
2
 
# invalid operands of types '<unresolved overloaded function type>' and 'int'
3
 
# to binary 'operator=='" by deleting the wrong line, as done by upstream
4
 
#
5
 
diff -Nur a/modules/profiles/profiles.cpp  b/modules/profiles/profiles.cpp
6
 
--- a/modules/profiles/profiles.cpp     2009-09-07 20:56:41.000000000 +0000
7
 
+++ b/modules/profiles/profiles.cpp     2009-09-07 20:56:50.000000000 +0000
8
 
@@ -670,8 +670,6 @@
9
 
 
10
 
        Profile p = profileManager->getProfile(item->text());
11
 
 
12
 
-       if (index == 0) return;
13
 
-
14
 
        profileName->setText(p.name);
15
 
        profileDir->setText(p.directory);
16
 
        profileUIN->setText(p.uin);