author | zautrix <zautrix> | 2005-01-21 19:36:09 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-21 19:36:09 (UTC) |
commit | 243562861a82aa2793362029a6c93b2b300b9477 (patch) (side-by-side diff) | |
tree | 2ec9c81f21ef058dedf506d1d0be7213b9301eef /kabc | |
parent | 5cbac3131e5cecde6042db12ca73d5cd72fbed77 (diff) | |
download | kdepimpi-243562861a82aa2793362029a6c93b2b300b9477.zip kdepimpi-243562861a82aa2793362029a6c93b2b300b9477.tar.gz kdepimpi-243562861a82aa2793362029a6c93b2b300b9477.tar.bz2 |
added tr.h
-rw-r--r-- | kabc/distributionlisteditor.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kabc/distributionlisteditor.cpp b/kabc/distributionlisteditor.cpp index bad1efc..9f5840b 100644 --- a/kabc/distributionlisteditor.cpp +++ b/kabc/distributionlisteditor.cpp @@ -9,33 +9,37 @@ This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <qlistview.h> #include <qlayout.h> #include <qpushbutton.h> #include <qcombobox.h> +#ifdef DESKTOP_VERSION #include <qinputdialog.h> +#else +#include <qtcompat/qinputdialog.h> +#endif #include <qbuttongroup.h> #include <qradiobutton.h> #include <klocale.h> #include <kdebug.h> #include "addressbook.h" #include "addresseedialog.h" #include "distributionlist.h" #include "distributionlisteditor.h" //US #include "distributionlisteditor.moc" using namespace KABC; |