Bug 218386 - umbrello freezes during c++ header import, Ubuntu 9.10 with kubuntu-desktop
Summary: umbrello freezes during c++ header import, Ubuntu 9.10 with kubuntu-desktop
Status: RESOLVED DUPLICATE of bug 302384
Alias: None
Product: umbrello
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Ubuntu Linux
: NOR crash
Target Milestone: ---
Assignee: Umbrello Development Group
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-12-12 14:20 UTC by Kestas
Modified: 2012-06-26 05:44 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Kestas 2009-12-12 14:20:21 UTC
Version:           2.3.2 (using KDE 4.3.2)
OS:                Linux
Installed from:    Ubuntu Packages

Project is created with Qt Creator, project compiles and runs. But Umbrello freezes when I try to import some *.h files from this project.

My project: http://launchpadlibrarian.net/36700388/simulator.zip

 On tuesday I have presentation at university about my project and open-source tools I've used, it would be very unpleasant if can't demonstrate umbrello because of this ugly bug..
 Any ideas how to solve problem?

This is objsconnections.h file from project, when i try to import it, Umbrello freezes:

#ifndef OBJSCONNECTIONS_H
#define OBJSCONNECTIONS_H

#include <list>
#include <string.h>
#include "ifobjheader.h"
#include "ifslottime.h"
using namespace std;

class ObjsConnections : IFSlotTime
{
private:
    list<IFObjHeader *> listObjs;
    list<IFObjHeader *>::iterator iter1; // general purpose obj list iterator
    list<IFObjHeader *>::iterator iter2; // general purpose obj list iterator
    double timeStep;
    IFSlotTime *view;
    void signalTime() { view->slotTime(); }
public:
    ObjsConnections();
    list<IFObjHeader *> *getObjsList();
    void addObj( IFObjHeader *a );
    void setTimeStep(double step) { timeStep = step;}
    void slotTime();
    void setView(IFSlotTime *view) {this->view = view;}
};

#endif // OBJSCONNECTIONS_H
Comment 1 Ralf Habacker 2012-06-26 05:44:41 UTC
already fixed in trunk/branch 4.9

*** This bug has been marked as a duplicate of bug 302384 ***