User forums > Help

ComboBox for select compiler, whats wrong?

<< < (3/4) > >>

kisoft:
So, revisions 3012,3023 is OK,
rev.3030 and above - trouble.

I would see logs now.

artoj:

--- Quote from: kisoft on October 13, 2006, 07:26:59 am ---So, revisions 3012,3023 is OK,
rev.3030 and above - trouble.

I would see logs now.


--- End quote ---

OK, good, so the problem must be introduced between 3024 and 3030. Let's see, here's the list of changes between those revisions:


--- Code: ---3030      Implemented 'start' offset and 'count' elements for debugging arrays.
          The options existed in the GUI but were not implemented in the driver.

3029      google/msdn search tip added

3028      Google Code

3027      apply [ Patch #1529 ] OpenFileTree was once more not updated
          correctly : fixes [ Bug #9001 ] Untitled1 in Open Files tree after save as

3026      apply [ Patch #1468 ] Expand caret period slider

3025      Got rid of strlen() too

3024      - Added loading of new images and new visual states
          - ProjectFile initialisation through initialiser list
          - Visual state changing only when needed

--- End code ---

Revisions 3029 and 3028 made only minor changes to we can rule them out. I don't think it was 3027 either or 3030.

I would start testing from 3024 and moving upwards. I can't really say just looking at the logs which one of those could have introduced the issue.

kisoft:

--- Quote from: artoj on October 13, 2006, 12:44:50 pm ---I would start testing from 3024 and moving upwards. I can't really say just looking at the logs which one of those could have introduced the issue.

--- End quote ---

I investigate a sources changes for 3024 to 3030 revs, but I don't found nothing. :(

I did upgrade my MinGW to 3.4.5. And I download wxWidgets dll 2.6.3pl2 (from a nightbuild package). No changes.
I think delete the default.conf, and configure all again.

artoj:
OK, I might try running C::B in Windows2000 at some point (via VMWare) but the VMWare page is somehow buggy at the moment and I can't get the registration key.

kisoft:

--- Quote from: artoj on October 13, 2006, 01:34:04 pm ---OK, I might try running C::B in Windows2000 at some point (via VMWare) but the VMWare page is somehow buggy at the moment and I can't get the registration key.

--- End quote ---
Don't required.
I did debug insertion into:
src\plugins\compilergcc\compileroptionsdlg.cpp

--- Code: ---void CompilerOptionsDlg::CompilerChanged()
{
    m_CurrentCompilerIdx = XRCCTRL(*this, "cmbCompiler", wxChoice)->GetSelection();

    Manager::Get()->GetMessageManager()->DebugLog(_T("Choice index %d\n"),m_CurrentCompilerIdx);

--- End code ---
After open a Choice list of compilers, I do select an any line. ComboBox (wxChoice) don't closed, and DebugLog see like it:

--- Code: ---[17:01:34.671]: Choice index 0

[17:01:35.500]: Choice index 0

[17:01:36.015]: Choice index 0

[17:01:36.484]: Choice index 0

--- End code ---
no changes. :(

Temporary help this change:

--- Code: ---before: m_CurrentCompilerIdx = XRCCTRL(*this, "cmbCompiler", wxChoice)->GetSelection();
after  : m_CurrentCompilerIdx = XRCCTRL(*this, "cmbCompiler", wxChoice)->GetCurrentSelection();

--- End code ---
after this change, Choice index changed on every click, but ComboBox don't closed.
It may be bug into wxWidgets.

Thanks for you help, now more usable. I don't have time for investigate more now.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version