There is a email-list for QtOctave. You have more info:
http://groups.google.com/group/qtoctave-english
If you want to become member of this list, please leva a response here and write your email in the “email box”.
There is a email-list for QtOctave. You have more info:
http://groups.google.com/group/qtoctave-english
If you want to become member of this list, please leva a response here and write your email in the “email box”.
Diciembre 3, 2007 a las 6:09 pm |
This email list is a good idea Pedro!
Thanks,
Rob
Septiembre 24, 2008 a las 4:02 am |
Had an issue building 0.8.1
Had to change projects.cpp, projects.h general_menu.h, and svgcanvas.cpp.
There was an issue with the include path as setup by the build scripts.
This was to build on fedora 9, x86_64, using the instructions in the readme.txt file.
I like QtOctave a lot. Muy Bien.
Here are my changes
— qtoctave-0.8.1.old/qtoctave/src/projects/projects.h 2008-09-21 04:00:29.000000000 -0500
+++ qtoctave-0.8.1/qtoctave/src/projects/projects.h 2008-09-23 20:51:10.000000000 -0500
@@ -19,7 +19,7 @@
#ifndef __PROJECTS_H__
#define __PROJECTS_H__
-#include “../ui_projects.h”
+#include “ui_projects.h”
#include “../config.h”
using namespace Ui;
— qtoctave-0.8.1.old/qtoctave/src/projects/projects.cpp 2008-09-21 04:00:29.000000000 -0500
+++ qtoctave-0.8.1/qtoctave/src/projects/projects.cpp 2008-09-23 20:52:38.000000000 -0500
@@ -1,5 +1,5 @@
#include “projects.h”
-#include “../ui_newprojectdialog.h”
+#include “ui_newprojectdialog.h”
#include
#include
#include
— qtoctave-0.8.1.old/qtoctave/src/operations/general_menu.h 2008-09-21 04:00:30.000000000 -0500
+++ qtoctave-0.8.1/qtoctave/src/operations/general_menu.h 2008-09-23 20:53:40.000000000 -0500
@@ -1,4 +1,4 @@
-#include “../ui_general_menu.h”
+#include “ui_general_menu.h”
#include “../config.h”
#include
— qtoctave-0.8.1.old/qtoctave/src/svgcanvas/svgcanvas.cpp 2008-09-21 04:00:30.000000000 -0500
+++ qtoctave-0.8.1/qtoctave/src/svgcanvas/svgcanvas.cpp 2008-09-23 20:55:09.000000000 -0500
@@ -235,7 +235,7 @@
plot.end();
}
-#include “../ui_export_to_dialog.h”
+#include “ui_export_to_dialog.h”
enum ExportFormat {PIXMAP, PICTURE, PRINTER, PDF, SVG};
Mayo 19, 2009 a las 8:48 pm |
I also had to make the changes olen described via the source downloaded today
Noviembre 27, 2009 a las 10:29 am |
Hi folks, i just made it to install qtoctave 0.8.2 on windows and wrote a document how to do this. if you give me an email or something where i can put it, i would sent it to this blog.
greetings
Diciembre 9, 2009 a las 7:36 am |
Having trouble compiling for Snow Leopard using Qt 4.6. Error message says”
[ 4%] Building CXX object qtoctave_pkg/src/CMakeFiles/qtoctave_pkg.dir/download.o
In file included from /Library/Frameworks/QtCore.framework/Headers/qatomic.h:45,
from /Library/Frameworks/QtCore.framework/Headers/qbytearray.h:45,
from /Library/Frameworks/QtCore.framework/Headers/qurl.h:45,
from /Library/Frameworks/QtCore.framework/Headers/QUrl:1,
from /Users/rbw/Desktop/qtoctave-0.8.2/qtoctave_pkg/src/download.cpp:7:
/Library/Frameworks/QtCore.framework/Headers/qglobal.h:288:2: error: #error “You are building a 64-bit application, but using a 32-bit version of Qt. Check your build configuration.”
In file included from /Library/Frameworks/QtGui.framework/Headers/qevent.h:47,
from /Library/Frameworks/QtGui.framework/Headers/QCloseEvent:1,
from /Users/rbw/Desktop/qtoctave-0.8.2/qtoctave_pkg/src/download.cpp:8:
/Library/Frameworks/QtGui.framework/Headers/qregion.h: In member function ‘OpaqueRgnHandle* QRegion::handle(bool) const’:
/Library/Frameworks/QtGui.framework/Headers/qregion.h:160: error: ‘toQDRgn’ was not declared in this scope
make[2]: *** [qtoctave_pkg/src/CMakeFiles/qtoctave_pkg.dir/download.o] Error 1
make[1]: *** [qtoctave_pkg/src/CMakeFiles/qtoctave_pkg.dir/all] Error 2
Have tried to tell Cmake to use i386 architecture but does not take notice.
Can you help?
Thanks
Fred