Changeset 744719f in OpenModelica


Ignore:
Timestamp:
2011-03-06T02:49:40+01:00 (13 years ago)
Author:
Adeel Asghar <adeel.asghar@…>
Branches:
Added-citation-metadata, maintenance/v1.14, maintenance/v1.15, maintenance/v1.16, maintenance/v1.17, maintenance/v1.18, maintenance/v1.19, maintenance/v1.20, maintenance/v1.21, maintenance/v1.22, maintenance/v1.23, master, omlib-staging
Children:
871f1fd
Parents:
8de7a45
Message:
  • Removed VC++ stuff and now mingw is used to compile omnotebook and omshell.

git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@8111 f25d12d1-65f4-0310-ae8a-bbce733d8d8e

Location:
OMShell
Files:
2 added
26 deleted
14 moved

Legend:

Unmodified
Added
Removed
  • OMShell/OMShellGUI/commandcompletion.cpp

    r37b8d39 r744719f  
    5151//IAEX Headers
    5252#include "commandcompletion.h"
    53 
    5453
    5554using namespace std;
  • OMShell/OMShellGUI/omc_communicator.cpp

    r487c201e r744719f  
    5050#include <QtGui/QApplication>
    5151#include <QtGui/QMessageBox>
    52 #include <Qt/QtCore>
     52#include <QtCore>
    5353
    5454
     
    9898
    9999  // ORB initialization.
    100   int argc(0); char* argv = new char[1];
    101   CORBA::ORB_var orb = CORBA::ORB_init(argc, &argv);
     100  int argc = 2;
     101  static const char *argv[] = { "-ORBgiopMaxMsgSize", "10485760" };
     102  CORBA::ORB_var orb = CORBA::ORB_init(argc, (char **)argv);
    102103
    103104  QFile objectRefFile;
     
    105106#ifdef WIN32
    106107
    107   char tempDirectory[1024];
    108   GetTempPath(1024, tempDirectory);
    109   objectRefFile.setFileName(*(new QString(tempDirectory)) + "openmodelica.objid");
     108//  char tempDirectory[1024];
     109//  GetTempPath(1024, tempDirectory);
     110//  objectRefFile.setFileName(*(new QString(tempDirectory)) + "openmodelica.objid");
     111  objectRefFile.setFileName(QString(QDir::tempPath()) + "/openmodelica.objid");
    110112
    111113#else  // UNIX environment
     
    130132
    131133  omc_ = OmcCommunication::_narrow(obj);
    132 
    133134
    134135  // Test if we have a connection.
  • OMShell/OMShellGUI/omc_communicator.h

    r2229069f r744719f  
    3838
    3939// Omc communication interface
    40 #include "omc_communication.h"
     40#include "../../OMEdit/OMEditGUI/omc_communication.h"
    4141
    4242
  • OMShell/OMShellGUI/omcinteractiveenvironment.cpp

    r13a1bf4 r744719f  
    3939
    4040#include "omcinteractiveenvironment.h"
    41 #include "../Compiler/runtime/config.h"
     41//#include "../Compiler/runtime/config.h"
    4242
    4343using namespace std;
Note: See TracChangeset for help on using the changeset viewer.