User forums > Nightly builds

The 04 december 2006 build is out.

<< < (4/7) > >>

sethjackson:

--- Quote from: skirby on December 05, 2006, 12:18:52 pm ---Also, I don't know why but now I have these two files in my project folder.
MyTest.layout.cbBack
MyTest.layout.cbTemp

--- End quote ---

Me too. I have no idea where they come from. :P
Mandrav?

mandrav:

--- Quote from: sethjackson on December 05, 2006, 04:58:16 pm ---
--- Quote from: skirby on December 05, 2006, 12:18:52 pm ---Also, I don't know why but now I have these two files in my project folder.
MyTest.layout.cbBack
MyTest.layout.cbTemp

--- End quote ---

Me too. I have no idea where they come from. :P
Mandrav?

--- End quote ---

* mandrav has no knowledge about these files

MortenMacFly:

--- Quote from: mandrav on December 05, 2006, 05:18:00 pm ---* mandrav has no knowledge about these files
--- End quote ---
I believe it is related to Thomas' changes. He made changes not to use wxTempFile but the S::B SDK variant for saving files. Anyway: It's better to have a few more files then a few less. ;-) That's what those changes were intended to fix... IIRC...
With regards, Morten.

sethjackson:

--- Quote from: mandrav on December 05, 2006, 05:18:00 pm ---
--- Quote from: sethjackson on December 05, 2006, 04:58:16 pm ---
--- Quote from: skirby on December 05, 2006, 12:18:52 pm ---Also, I don't know why but now I have these two files in my project folder.
MyTest.layout.cbBack
MyTest.layout.cbTemp

--- End quote ---

Me too. I have no idea where they come from. :P
Mandrav?

--- End quote ---

* mandrav has no knowledge about these files
--- End quote ---

Ok.


--- Quote from: MortenMacFly on December 05, 2006, 05:29:31 pm ---
--- Quote from: mandrav on December 05, 2006, 05:18:00 pm ---* mandrav has no knowledge about these files
--- End quote ---
I believe it is related to Thomas' changes. He made changes not to use wxTempFile but the S::B SDK variant for saving files. Anyway: It's better to have a few more files then a few less. ;-) That's what those changes were intended to fix... IIRC...
With regards, Morten.

--- End quote ---


Yup. :)


--- Code: ---bool FileManager::Save(const wxString& name, const char* data, size_t len)
{
    if(wxFileExists(name) == false) // why bother if we don't need to
    {
        wxFile f(name, wxFile::write);
        if(!f.IsOpened())
            return false;
        return f.Write(data, len);
    }

    wxString tempName(name + _T(".cbTemp"));
    wxString backupName(name + _T(".cbBack"));
    .....
}

--- End code ---

AmR EiSa:
Hi

i try edit path in wizard for console app but i find it's not give the info for Builld Options !!!
why ?

AmR EiSa

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version