[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#417314: FTBFS with GCC 4.3: missing #includes



Package: kdepim
Version: 4:3.5.5.dfsg.1-6
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).  Some background of this can be found at
http://gcc.gnu.org/PR28080

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of kdepim_4:3.5.5.dfsg.1-6 on coconut0 by sbuild/ia64 0.49
...
>  g++ -DHAVE_CONFIG_H -I. -I/build/tbm/kdepim-3.5.5.dfsg.1/./libkdenetwork/gpgmepp -I../.. -I/build/tbm/kdepim-3.5.5.dfsg.1/./libkdenetwork -I/build/tbm/kdepim-3.5.5.dfsg.1/./libkdenetwork/gpgmepp -I/build/tbm/kdepim-3.5.5.dfsg.1/./libkdepim -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -D_LARGE_FILES=1 -DHAVE_BOOST -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -g -Wall -O2 -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -c /build/tbm/kdepim-3.5.5.dfsg.1/./libkdenetwork/gpgmepp/callbacks.cpp  -fPIC -DPIC -o .libs/callbacks.o
> /build/tbm/kdepim-3.5.5.dfsg.1/./libkdenetwork/gpgmepp/callbacks.cpp: In function 'gpgme_error_t passphrase_callback(void*, const char*, const char*, int, int)':
> /build/tbm/kdepim-3.5.5.dfsg.1/./libkdenetwork/gpgmepp/callbacks.cpp:76: warning: conversion to 'long unsigned int' from 'ssize_t' may alter its value
> /build/tbm/kdepim-3.5.5.dfsg.1/./libkdenetwork/gpgmepp/callbacks.cpp:82: error: 'free' was not declared in this scope

--- libkdenetwork/gpgmepp/callbacks.cpp~	2007-04-02 08:59:55.000000000 +0000
+++ libkdenetwork/gpgmepp/callbacks.cpp	2007-04-02 09:00:01.000000000 +0000
@@ -28,6 +28,7 @@
 #include <gpgmepp/interfaces/dataprovider.h>
 #include <gpgmepp/context.h> // for Error
 
+#include <cstdlib>
 #include <cassert>
 #include <cerrno>
 #include <unistd.h>
--- libkdenetwork/gpgmepp/importresult.cpp~	2007-04-02 09:00:27.000000000 +0000
+++ libkdenetwork/gpgmepp/importresult.cpp	2007-04-02 09:00:35.000000000 +0000
@@ -26,6 +26,8 @@
 #include "shared.h"
 #include "result_p.h"
 
+#include <cstdlib>
+
 #include <gpgme.h>
 
 class GpgME::ImportResult::Private : public GpgME::Shared {

After fixing this, we still get lots of other C++ errors:

/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: could not convert template argument 'unpack_MemoAppInfo' to 'int (*)(MemoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: could not convert template argument 'pack_MemoAppInfo' to 'int (*)(MemoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: could not convert template argument 'unpack_AddressAppInfo' to 'int (*)(AddressAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: could not convert template argument 'pack_AddressAppInfo' to 'int (*)(AddressAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.cc:48: error: request for member 'info' in '* info', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: could not convert template argument 'unpack_AppointmentAppInfo' to 'int (*)(AppointmentAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: could not convert template argument 'pack_AppointmentAppInfo' to 'int (*)(AppointmentAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: could not convert template argument 'unpack_ToDoAppInfo' to 'int (*)(ToDoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: could not convert template argument 'pack_ToDoAppInfo' to 'int (*)(ToDoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: could not convert template argument 'unpack_AddressAppInfo' to 'int (*)(AddressAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: could not convert template argument 'pack_AddressAppInfo' to 'int (*)(AddressAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: could not convert template argument 'unpack_ToDoAppInfo' to 'int (*)(ToDoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: could not convert template argument 'pack_ToDoAppInfo' to 'int (*)(ToDoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: could not convert template argument 'unpack_MemoAppInfo' to 'int (*)(MemoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: could not convert template argument 'pack_MemoAppInfo' to 'int (*)(MemoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/memoWidget.cc:188: error: invalid conversion from 'PilotLocalDatabase*' to 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/memoWidget.cc:190: error: request for member 'dump' in '*((MemoWidget*)this)->MemoWidget::d->MemoWidget::Private::fMemoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/memoWidget.cc:191: error: request for member 'categoryInfo' in '*((MemoWidget*)this)->MemoWidget::d->MemoWidget::Private::fMemoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/memoWidget.cc:421: error: request for member 'categoryInfo' in '*((MemoWidget*)this)->MemoWidget::d->MemoWidget::Private::fMemoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/memoWidget.cc:596: error: request for member 'categoryInfo' in '*((MemoWidget*)this)->MemoWidget::d->MemoWidget::Private::fMemoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/memoWidget.cc:606: error: request for member 'categoryInfo' in '*((MemoWidget*)this)->MemoWidget::d->MemoWidget::Private::fMemoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/addressWidget.cc:146: error: invalid conversion from 'PilotDatabase*' to 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/addressWidget.cc:147: error: request for member 'categoryInfo' in '*((AddressWidget*)this)->AddressWidget::fAddressAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/addressWidget.cc:304: error: request for member 'categoryInfo' in '*((AddressWidget*)this)->AddressWidget::fAddressAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/addressWidget.cc:511: error: request for member 'categoryInfo' in '*((AddressWidget*)this)->AddressWidget::fAddressAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/addressWidget.cc:676: error: request for member 'categoryInfo' in '*((AddressWidget*)this)->AddressWidget::fAddressAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/addressWidget.cc:680: error: request for member 'categoryName' in '*((AddressWidget*)this)->AddressWidget::fAddressAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/addressWidget.cc:727: error: request for member 'info' in '*((AddressWidget*)this)->AddressWidget::fAddressAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/addressEditor.cc:116: error: request for member 'info' in '*((AddressEditor*)this)->AddressEditor::fAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/todoWidget.cc:104: error: request for member 'info' in '*((TodoWidget*)this)->TodoWidget::fTodoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/todoWidget.cc:145: error: invalid conversion from 'PilotDatabase*' to 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/todoWidget.cc:146: error: request for member 'categoryInfo' in '*((TodoWidget*)this)->TodoWidget::fTodoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/todoWidget.cc:295: error: request for member 'categoryInfo' in '*((TodoWidget*)this)->TodoWidget::fTodoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/todoWidget.cc:372: error: request for member 'info' in '*((TodoWidget*)this)->TodoWidget::fTodoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/todoWidget.cc:422: error: request for member 'info' in '*((TodoWidget*)this)->TodoWidget::fTodoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/todoWidget.cc:439: error: request for member 'categoryInfo' in '*((TodoWidget*)this)->TodoWidget::fTodoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: could not convert template argument 'unpack_AddressAppInfo' to 'int (*)(AddressAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: could not convert template argument 'pack_AddressAppInfo' to 'int (*)(AddressAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: could not convert template argument 'unpack_MemoAppInfo' to 'int (*)(MemoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: could not convert template argument 'pack_MemoAppInfo' to 'int (*)(MemoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: could not convert template argument 'unpack_AppointmentAppInfo' to 'int (*)(AppointmentAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: could not convert template argument 'pack_AppointmentAppInfo' to 'int (*)(AppointmentAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: could not convert template argument 'unpack_ToDoAppInfo' to 'int (*)(ToDoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: could not convert template argument 'pack_ToDoAppInfo' to 'int (*)(ToDoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/internalEditorAction.cc:162: error: invalid conversion from 'PilotDatabase*' to 'PilotAddressInfo'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/internalEditorAction.cc:173: error: invalid conversion from 'PilotDatabase*' to 'PilotToDoInfo'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/internalEditorAction.cc:175: error: request for member 'info' in 'info', which is of non-class type 'PilotToDoInfo'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/internalEditorAction.cc:176: error: request for member 'info' in 'info', which is of non-class type 'PilotToDoInfo'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/internalEditorAction.cc:193: error: invalid conversion from 'PilotDatabase*' to 'PilotDateInfo'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/internalEditorAction.cc:195: error: request for member 'info' in 'info', which is of non-class type 'PilotDateInfo'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/internalEditorAction.cc:196: error: request for member 'info' in 'info', which is of non-class type 'PilotDateInfo'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: could not convert template argument 'unpack_AddressAppInfo' to 'int (*)(AddressAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: could not convert template argument 'pack_AddressAppInfo' to 'int (*)(AddressAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: could not convert template argument 'unpack_MemoAppInfo' to 'int (*)(MemoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: could not convert template argument 'pack_MemoAppInfo' to 'int (*)(MemoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: could not convert template argument 'unpack_AppointmentAppInfo' to 'int (*)(AppointmentAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: could not convert template argument 'pack_AppointmentAppInfo' to 'int (*)(AppointmentAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: could not convert template argument 'unpack_ToDoAppInfo' to 'int (*)(ToDoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: could not convert template argument 'pack_ToDoAppInfo' to 'int (*)(ToDoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/internalEditorAction.cc:162: error: invalid conversion from 'PilotDatabase*' to 'PilotAddressInfo'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/internalEditorAction.cc:173: error: invalid conversion from 'PilotDatabase*' to 'PilotToDoInfo'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/internalEditorAction.cc:175: error: request for member 'info' in 'info', which is of non-class type 'PilotToDoInfo'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/internalEditorAction.cc:176: error: request for member 'info' in 'info', which is of non-class type 'PilotToDoInfo'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/internalEditorAction.cc:193: error: invalid conversion from 'PilotDatabase*' to 'PilotDateInfo'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/internalEditorAction.cc:195: error: request for member 'info' in 'info', which is of non-class type 'PilotDateInfo'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/kpilot/internalEditorAction.cc:196: error: request for member 'info' in 'info', which is of non-class type 'PilotDateInfo'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: could not convert template argument 'unpack_MemoAppInfo' to 'int (*)(MemoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: could not convert template argument 'pack_MemoAppInfo' to 'int (*)(MemoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: could not convert template argument 'unpack_MemoAppInfo' to 'int (*)(MemoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: could not convert template argument 'pack_MemoAppInfo' to 'int (*)(MemoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotMemo.h:101: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/memofileconduit/memofile-conduit.cc:192: error: request for member 'setCategoryName' in '*((MemofileConduit*)this)->MemofileConduit::fMemoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/memofileconduit/memofile-conduit.cc:218: error: request for member 'info' in '*((MemofileConduit*)this)->MemofileConduit::fMemoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/memofileconduit/memofile-conduit.cc:220: error: request for member 'info' in '*((MemofileConduit*)this)->MemofileConduit::fMemoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/memofileconduit/memofile-conduit.cc:231: error: invalid conversion from 'PilotDatabase*' to 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/memofileconduit/memofile-conduit.cc:232: error: request for member 'dump' in '*((MemofileConduit*)this)->MemofileConduit::fMemoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/memofileconduit/memofile-conduit.cc:267: error: request for member 'categoryName' in '*((MemofileConduit*)this)->MemofileConduit::fMemoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/memofileconduit/memofile-conduit.cc:271: error: request for member 'categoryInfo' in '*((MemofileConduit*)this)->MemofileConduit::fMemoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: could not convert template argument 'unpack_AddressAppInfo' to 'int (*)(AddressAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: could not convert template argument 'pack_AddressAppInfo' to 'int (*)(AddressAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotAddress.h:79: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/abbrowserconduit/abbrowser-conduit.cc:383: error: invalid conversion from 'PilotDatabase*' to 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/abbrowserconduit/abbrowser-conduit.cc:384: error: request for member 'dump' in '*((AbbrowserConduit*)this)->AbbrowserConduit::fAddressAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/abbrowserconduit/abbrowser-conduit.cc:389: error: request for member 'writeTo' in '*((AbbrowserConduit*)this)->AbbrowserConduit::fAddressAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/abbrowserconduit/abbrowser-conduit.cc:390: error: request for member 'writeTo' in '*((AbbrowserConduit*)this)->AbbrowserConduit::fAddressAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/abbrowserconduit/abbrowser-conduit.cc:612: error: request for member 'findCategory' in '*(PilotAddressInfo*)((const AbbrowserConduit*)this)->AbbrowserConduit::fAddressAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/abbrowserconduit/abbrowser-conduit.cc:1903: error: request for member 'categoryName' in '*((AbbrowserConduit*)this)->AbbrowserConduit::fAddressAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: could not convert template argument 'unpack_AppointmentAppInfo' to 'int (*)(AppointmentAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: could not convert template argument 'pack_AppointmentAppInfo' to 'int (*)(AppointmentAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: could not convert template argument 'unpack_AppointmentAppInfo' to 'int (*)(AppointmentAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: could not convert template argument 'pack_AppointmentAppInfo' to 'int (*)(AppointmentAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotDateEntry.h:369: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: could not convert template argument 'unpack_ToDoAppInfo' to 'int (*)(ToDoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: could not convert template argument 'pack_ToDoAppInfo' to 'int (*)(ToDoAppInfo*, unsigned char*, long unsigned int)'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/lib/pilotTodoEntry.h:138: error: invalid type in declaration before ';' token
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/vcalconduit/todo-conduit.h:90: error: request for member 'info' in '*((TodoConduit*)this)->TodoConduit::fTodoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/vcalconduit/todo-conduit.h:91: error: request for member 'info' in '*((TodoConduit*)this)->TodoConduit::fTodoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/vcalconduit/todo-conduit.cc:202: error: request for member 'writeTo' in '*((TodoConduit*)this)->TodoConduit::fTodoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/vcalconduit/todo-conduit.cc:211: error: invalid conversion from 'PilotDatabase*' to 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/vcalconduit/todo-conduit.cc:214: error: request for member 'dump' in '*((TodoConduit*)this)->TodoConduit::fTodoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/vcalconduit/todo-conduit.cc:354: error: request for member 'categoryName' in '*(PilotToDoInfo*)((const TodoConduit*)this)->TodoConduit::fTodoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/vcalconduit/todo-conduit.cc:364: error: request for member 'categoryName' in '*(PilotToDoInfo*)((const TodoConduit*)this)->TodoConduit::fTodoAppInfo', which is of non-class type 'int'
/home/tbm/src/kdepim-3.5.5.dfsg.1/./kpilot/conduits/vcalconduit/todo-conduit.cc:444: error: request for member 'categoryName' in '*((TodoConduit*)this)->TodoConduit::fTodoAppInfo', which is of non-class type 'int'

-- 
Martin Michlmayr
http://www.cyrius.com/



Reply to: