Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 95978 | Differences between
and this patch

Collapse All | Expand All

(-)ifp_gui-0.8.5-orig/ifp_gui.pro (-1 / +2 lines)
Lines 8-14 Link Here
8
CONFIG += release \
8
CONFIG += release \
9
          warn_on \
9
          warn_on \
10
          qt \
10
          qt \
11
          thread 
11
          thread \
12
          no_fixpath
12
TEMPLATE = subdirs 
13
TEMPLATE = subdirs 
13
SUBDIRS += src 
14
SUBDIRS += src 
14
LANGUAGE = C++
15
LANGUAGE = C++
(-)ifp_gui-0.8.5-orig/src/radiofreqdlg.cpp (-4 / +3 lines)
Lines 18-29 Link Here
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19
 ***************************************************************************/
19
 ***************************************************************************/
20
20
21
#include "radiofreqdlg.h"
21
#include <ifp.h>
22
#include "ifp.h"
23
#include "gui_user.h"
24
25
#include <qmessagebox.h>
22
#include <qmessagebox.h>
26
23
24
#include "radiofreqdlg.h"
25
#include "gui_user.h"
27
26
28
RadioFreqWindow::RadioFreqWindow(QWidget *parent, const char *name, bool modal, WFlags f)
27
RadioFreqWindow::RadioFreqWindow(QWidget *parent, const char *name, bool modal, WFlags f)
29
    : QDialog( parent, name, modal, f )
28
    : QDialog( parent, name, modal, f )
(-)ifp_gui-0.8.5-orig/src/radiofreqdlg.h (-1 / +1 lines)
Lines 26-32 Link Here
26
#include <qtooltip.h>
26
#include <qtooltip.h>
27
#include <qtable.h>
27
#include <qtable.h>
28
28
29
#include "ifp.h"
29
#include <ifp.h>
30
30
31
31
32
class RadioFreqWindow: public QDialog
32
class RadioFreqWindow: public QDialog
(-)ifp_gui-0.8.5-orig/src/src.pro (-14 / +5 lines)
Lines 27-35 Link Here
27
           createdirdlg.h \
27
           createdirdlg.h \
28
           settings.h \
28
           settings.h \
29
           gui_user.h \
29
           gui_user.h \
30
           ifp.h \
31
           libifp/ifp_os.h \
32
           libifp/prim.h \
33
           radiofreqdlg.h \
30
           radiofreqdlg.h \
34
           ifprecconv/adpcm.h \
31
           ifprecconv/adpcm.h \
35
           ifprecconv/endian.h \
32
           ifprecconv/endian.h \
Lines 45-66 Link Here
45
           createdirdlg.cpp \
42
           createdirdlg.cpp \
46
           settings.cpp \
43
           settings.cpp \
47
           gui_user.cpp \
44
           gui_user.cpp \
48
           libifp/comp.c \
49
           libifp/error_strings.c \
50
           libifp/ifp_os_libusb.c \
51
           libifp/prim.c \
52
           libifp/readwrite.c \
53
           libifp/tuner.c \
54
           libifp/userfile.c \
55
           radiofreqdlg.cpp \
45
           radiofreqdlg.cpp \
56
           ifprecconv/adpcm.c \
46
           ifprecconv/adpcm.c \
57
           ifprecconv/ifprecconv.c \
47
           ifprecconv/ifprecconv.c \
58
           playlist/playlistloader.cpp 
48
           playlist/playlistloader.cpp 
59
LIBS += -lusb \
49
LIBS += -lusb -lifp \
60
-L/usr/local/lib
50
-L/usr/lib
61
QMAKE_LIBDIR = /usr/local/lib
51
QMAKE_LIBDIR = /usr/local/lib
62
TARGET = ../bin/ifp_gui
52
TARGET = ifp-gui
63
CONFIG += release \
53
CONFIG += release \
64
warn_on \
54
warn_on \
65
qt
55
qt \
56
no_fixpath
66
TEMPLATE = app
57
TEMPLATE = app

Return to bug 95978