List:GUI Tools« Previous MessageNext Message »
From:Corey Schuhen Date:June 13 2002 12:11pm
Subject:Re: Bug report for MyCC
View as plain text  
Oops, did I say destructor, It was actually in the paint method.

<RANT>

b.t.w. I do not think much of the charater formatting at all. I dont really 
care if you pick spaces or tabs, but dont mix and match them on the same 
line. It really messes things up for people that set their editor to 4-space 
tabstops and it is just plain messy.

</RANT>

Corey

On Thu, 13 Jun 2002 21:59, Corey Schuhen wrote:
> Hello,
>
> I get a segmentation fauilt in MyCC version 0.8.4.
>
> When using the SQL editor on a table data window.
>
> I have the following table definition:
>
> mysql> show columns from person;
> +---------------+----------+------+-----+------------+----------------+
>
> | Field         | Type     | Null | Key | Default    | Extra          |
>
> +---------------+----------+------+-----+------------+----------------+
>
> | pid           | int(8)   |      | PRI | NULL       | auto_increment |
> | email         | char(64) |      | MUL |            |                |
> | password      | char(16) |      |     |            |                |
> | salutation    | int(11)  |      |     | 0          |                |
> | first_name    | char(16) |      |     |            |                |
> | middle_name   | char(16) | YES  |     | NULL       |                |
> | surname       | char(16) |      |     |            |                |
> | member_since  | date     |      |     | 0000-00-00 |                |
> | date_of_birth | date     |      |     | 0000-00-00 |                |
> | access        | int(11)  |      |     | 0          |                |
>
> +---------------+----------+------+-----+------------+----------------+
> 10 rows in set (0.00 sec)
>
> mysql>
>
> When altering the following query, I have the cursor before the closing
> bracket on the second line, when I press the tab key for completeion, I get
> a empty rectangular box come up partially over the query and a segmentation
> fault in the completionItem destructor completion.cpp:55.
>
> INSERT INTO person
> (pid, email, pas)
> VALUES( [Value1,...N] )
>
> I have not had time to dubug the cause properly, I tried wrapping the
> delete inside an if != NULL, this did not help.
>
> Cya
>
> Corey

Thread
Re: Bug report for MyCCCorey Schuhen13 Jun