Search found 447 matches

by barbara
Thu Mar 28 2024 7:32 pm
Forum: Issues
Topic: QString documentation issue
Replies: 3
Views: 29

Re: QString documentation issue

An alias is not a typedef. Calling an alias a typedef gets you into all kinds of trouble. The following text was copied directly from cppreference, which is a trusted site for interpreting the C++ standard. "A type alias declaration introduces a name which can be used as a synonym for the type...
by barbara
Wed Mar 27 2024 5:46 pm
Forum: Issues
Topic: Qt::CaseInsensitive no longer working
Replies: 5
Views: 42

Re: Qt::CaseInsensitive no longer working

CopperSpice currently requires C++17 and we are moving to C++20 this year. We are continually migrating the code base to a more modern version of the language. However, our team is careful when making changes which will affect our user base. I can assure you we have changed some enums to enum classe...
by barbara
Tue Mar 26 2024 4:02 am
Forum: Issues
Topic: Qt::CaseInsensitive no longer working
Replies: 5
Views: 42

Re: Qt::CaseInsensitive no longer working

We took another look at this and I noticed you are missing the second parameter. The API shows three parameters with the second and third having default values. If you want to pass Qt::CaseInsensitive for the third parameter you must pass 0 (default value) for the second parameter. When all three pa...
by barbara
Mon Mar 25 2024 3:37 am
Forum: Issues
Topic: QString documentation issue
Replies: 3
Views: 29

Re: QString documentation issue

As you mentioned, the following code can be found in the file "src/core/string/qstring8.h". It is part of the definition for the QString8 class. using difference_type = std:ptddiff_t; using size_type = std::ptrdiff_t; Both of these line declare a Type Alias which consists of an (A) identif...
by barbara
Fri Mar 01 2024 3:56 am
Forum: Enhancements
Topic: Enh Rqst 1.4.1: warn when functions are not documented
Replies: 1
Views: 84

Re: Enh Rqst 1.4.1: warn when functions are not documented

If you want to check for functions/methods which exist in the Source code but were not documented, please make sure the following tags are set correctly in your project file. Build Configuration Extract All - off Hide undocumented members - off Messages Warn about undocumented members - on Can you g...
by barbara
Thu Feb 22 2024 8:43 pm
Forum: Issues
Topic: Documentation - QNetworkAccessManager
Replies: 2
Views: 102

Re: Documentation - QNetworkAccessManager

The changes to the CsNetwork header files was available in the CS Overview migration documentation. We understand users may not have known about this information. I just made a change to the API documentation which explains these file name changes. Everything is located on one page since this has oc...
by barbara
Fri Feb 16 2024 2:49 am
Forum: Issues
Topic: QXcbClipboard: SelectionRequest too old
Replies: 6
Views: 242

Re: QXcbClipboard: SelectionRequest too old

Can you reproduce this issue using MATE on one of our supported platforms like Fedora or Ubuntu? Linux Mint is currently not a supported platform.

Barbara
by barbara
Mon Feb 12 2024 10:42 pm
Forum: Announcements
Topic: CopperSpice 1.9.0
Replies: 0
Views: 198

CopperSpice 1.9.0

CopperSpice 1.9.0 was released on January 29 2024 This release includes major enhancements and improvements to the Date and Time classes, support for std::chrono, MySQL support, support for Unicode 15 and newer text rendering, multiple compiler warnings resolved, added support for new Unix platforms...
by barbara
Fri Feb 09 2024 8:42 pm
Forum: Installation
Topic: How to generate the API documenation from source?
Replies: 2
Views: 313

Re: How to generate the API documenation from source?

We continuously improve and update the CS API documentation as we find better ways to explain how a particular class or method works. You may find the CS 1.9 actually provides some useful information which was not available in the prior documentation. However since we are providing the CS 1.8.2 bina...
by barbara
Sun Jan 21 2024 4:38 am
Forum: User Support
Topic: Having trouble finding and linking with cmake on windows.
Replies: 1
Views: 1212

Re: Having trouble finding and linking with cmake on windows.

On Windows we have fully tested CopperSpice when building with MinGW or MSVC. ** Part One ( building CS ) When building from source you need to ensure CopperSpice is "installed" after it is built. The following is our suggested setup of folder names. The purpose of the install step to popu...