diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-11 22:31:42 -0600 |
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-11 22:31:42 -0600 |
| commit | 80f7740fa8f2d5637c8cef6221285d3d81e57267 (patch) | |
| tree | 66e9eddb135d84fee39d4a4c2310eb790ca6c173 /clients/tde/src/part/fpgaprogram | |
| parent | 1936e344437d5d212705892fa9c82cdc4bf81304 (diff) | |
| download | ulab-80f7740fa8f2d5637c8cef6221285d3d81e57267.tar.gz ulab-80f7740fa8f2d5637c8cef6221285d3d81e57267.zip | |
Update for latest version of TDE
Diffstat (limited to 'clients/tde/src/part/fpgaprogram')
| -rw-r--r-- | clients/tde/src/part/fpgaprogram/Makefile.am | 2 | ||||
| -rw-r--r-- | clients/tde/src/part/fpgaprogram/part.cpp | 12 | ||||
| -rw-r--r-- | clients/tde/src/part/fpgaprogram/part.h | 10 |
3 files changed, 12 insertions, 12 deletions
diff --git a/clients/tde/src/part/fpgaprogram/Makefile.am b/clients/tde/src/part/fpgaprogram/Makefile.am index 1fe1065..903571d 100644 --- a/clients/tde/src/part/fpgaprogram/Makefile.am +++ b/clients/tde/src/part/fpgaprogram/Makefile.am @@ -7,5 +7,5 @@ KDE_ICON = libremotelab_fpgaprogrammer # Part kde_module_LTLIBRARIES = libremotelab_fpgaprogrammer.la libremotelab_fpgaprogrammer_la_LIBADD = ../../widgets/libtracewidget.la ../../widgets/libfloatspinbox.la $(LIB_KFILE) $(LIB_KPARTS) $(LIB_TDEUI) $(LIB_QT) -ltdekrbsocket -ltqtrla -libremotelab_fpgaprogrammer_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) $(LIB_TDECORE) $(LIB_TDEUI) -lkio -ltdefx +libremotelab_fpgaprogrammer_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) $(LIB_TDECORE) $(LIB_TDEUI) -ltdeio -ltdefx libremotelab_fpgaprogrammer_la_SOURCES = part.cpp layout.ui diff --git a/clients/tde/src/part/fpgaprogram/part.cpp b/clients/tde/src/part/fpgaprogram/part.cpp index a9dd169..3539baf 100644 --- a/clients/tde/src/part/fpgaprogram/part.cpp +++ b/clients/tde/src/part/fpgaprogram/part.cpp @@ -15,7 +15,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (c) 2012 Timothy Pearson + * (c) 2012-2013 Timothy Pearson * Raptor Engineering * http://www.raptorengineeringinc.com */ @@ -24,12 +24,12 @@ #include "part.h" #include <kaboutdata.h> //::createAboutData() -#include <kaction.h> +#include <tdeaction.h> #include <klocale.h> #include <ktextedit.h> -#include <kfiledialog.h> +#include <tdefiledialog.h> #include <kmessagebox.h> //::start() -#include <kparts/genericfactory.h> +#include <tdeparts/genericfactory.h> #include <kstatusbar.h> #include <kstdaction.h> #include <knuminput.h> @@ -526,8 +526,8 @@ void FPGAProgramPart::mainEventLoop() { m_connectionMutex->unlock(); } -KAboutData* FPGAProgramPart::createAboutData() { - return new KAboutData( APP_NAME, I18N_NOOP( APP_PRETTYNAME ), APP_VERSION ); +TDEAboutData* FPGAProgramPart::createAboutData() { + return new TDEAboutData( APP_NAME, I18N_NOOP( APP_PRETTYNAME ), APP_VERSION ); } } //namespace RemoteLab diff --git a/clients/tde/src/part/fpgaprogram/part.h b/clients/tde/src/part/fpgaprogram/part.h index 9242ae1..48dde79 100644 --- a/clients/tde/src/part/fpgaprogram/part.h +++ b/clients/tde/src/part/fpgaprogram/part.h @@ -29,15 +29,15 @@ #include <tqframe.h> #include <tqimage.h> -#include <kparts/browserextension.h> -#include <kparts/statusbarextension.h> -#include <kparts/part.h> +#include <tdeparts/browserextension.h> +#include <tdeparts/statusbarextension.h> +#include <tdeparts/part.h> #include <kurl.h> #include <kled.h> #include <tqtrla.h> -class KAboutData; +class TDEAboutData; using KParts::StatusBarExtension; class TraceWidget; class TQSocket; @@ -58,7 +58,7 @@ namespace RemoteLab virtual bool openFile() { return false; } // pure virtual in the base class virtual bool closeURL(); - static KAboutData *createAboutData(); + static TDEAboutData *createAboutData(); public slots: virtual bool openURL(const KURL &url); |
