Search found 142 matches
- Mon May 22 2023 4:41 am
- Forum: Developers
- Topic: Exception Related to String Encoding?
- Replies: 5
- Views: 138
Re: Exception Related to String Encoding?
If I look on the Microsoft site, I see the latest VS 2019 Professional is 16.11 I cannot find any reference to 19.29.30147 Perhaps I am looking in the wrong place? In our CI, we use VS 2019 version 16.11.23. If you run cl.exe you will see the actual version of the compiler, which is where you will ...
- Fri May 19 2023 5:59 pm
- Forum: Issues
- Topic: Assertion failure causing immediate app exit in the debug mode when adding a connection
- Replies: 1
- Views: 763
Re: Assertion failure causing immediate app exit in the debug mode when adding a connection
We are happy to hear you are finding CopperSpice of value. A similar issue was reported and we were able to merge your information with the other details to solve the problem. The solution required changes in CsLibGuarded, CsSignal, and CopperSpice. If you would like to test these changes, build Cop...
- Sun Mar 12 2023 8:51 pm
- Forum: User Support
- Topic: CopperSpice on Arm - again
- Replies: 4
- Views: 2152
Re: CopperSpice on Arm - again
We added full support for ARM in May 2022 with the addition of CopperSpice support for Raspberry Pi. The CS build is performed on a Debian host computer using a cross compiler which targets Raspbian. The directions for building the binary files are located in our CS Overview documentation. https://w...
- Tue Dec 13 2022 1:00 am
- Forum: User Support
- Topic: Need help using QXmlStreamReader.
- Replies: 8
- Views: 1122
Re: Need help using QXmlStreamReader.
Can you try a couple different variations of your code?
- If you process the first 1000 files twice, does it still crash?
- If you remove the last 2 or 3 files it processed from the directory, can it process the rest of the files?
- If you process the files in reverse order, what happens?
- Fri Nov 04 2022 1:37 am
- Forum: Developers
- Topic: QVariant bug/documentation issue
- Replies: 5
- Views: 1003
Re: QVariant bug/documentation issue
Classes such as QColor, QBrush, and QFont are part of CsGui. We can not declare a constructor which accepts a QFont or a toFont() method since QVariant is in the CsCore library. This is why we provided template methods such as fromValue() and value().
- Mon Oct 31 2022 6:31 pm
- Forum: Developers
- Topic: QVariant bug/documentation issue
- Replies: 5
- Views: 1003
Re: QVariant bug/documentation issue
There are around 50 different constructors in QVariant to support the most common data types. To create a QVariant using a type which was not provided, such as QFont, you need to use the QVariant::fromValue or QVariant::setValue template methods. The value can then be retrieved out of the variant us...
- Tue Sep 13 2022 2:50 am
- Forum: Developers
- Topic: QSettings::setPath() being ignored
- Replies: 2
- Views: 1024
Re: QSettings::setPath() being ignored
We took a look at the constructors for QSettings. If you are using the constructor where the first parameter is a filename, the file will be created relative to the current working directory. One option is to specify the full path as part of the filename. There are other constructors which may have ...
- Sun Sep 11 2022 7:04 pm
- Forum: Developers
- Topic: QMap::findValue
- Replies: 4
- Views: 1046
Re: QMap::findValue
Thanks for explaining your suggestion, we have added this to our roadmap for a future release. We will also update the documentation for defaulted values.
- Mon Aug 15 2022 12:23 am
- Forum: Developers
- Topic: XCB crash when left doing nothing
- Replies: 6
- Views: 1363
Re: XCB crash when left doing nothing
No OpenGL integration plugin was found, this is only required for programs which use OpenGL. /home/roland/Projects/copperspice/src/plugins/platforms/xcb/xcb_support/qxcb_clipboard.cpp, line 466 Aborted (core dumped) After rebuilding CopperSpice with the master branch, if you can create a small repe...
- Mon Aug 15 2022 12:10 am
- Forum: Developers
- Topic: XCB crash when left doing nothing
- Replies: 6
- Views: 1363
Re: XCB crash when left doing nothing
No OpenGL integration plugin was found, this is only required for programs which use OpenGL. If your application needs OpenGL you will need to install the OpenGL plugin. If your application does not use OpenGL, this message can be ignored. The warning message is reported since the XCB platform plug...