Search found 256 matches

by seasoned_geek
Wed Feb 14 2024 10:18 pm
Forum: Issues
Topic: double free or corruption
Replies: 5
Views: 10514

Re: double free or corruption

That was one deeeeep dive further than I ever wanted to go in Scintilla to find the issue.

Sorry for the false alarm.
by seasoned_geek
Wed Feb 14 2024 10:17 pm
Forum: Issues
Topic: setTabTextColor() no longer working
Replies: 3
Views: 56

setTabTextColor() no longer working

All, Prior to merging from top into my RPM branch this code always worked. void MainWindow::updateDirtyIndicator( FileDetails dtls ) { qDebug() << "updatedirtyIndicator called\n"; for ( int jjj=0; jjj < m_tabWidget->count(); ++jjj ) { EdtEditWidget *ptr = static_cast<EdtEditWidget *>( m_ta...
by seasoned_geek
Wed Jan 17 2024 1:00 pm
Forum: Issues
Topic: QComboBox Documentation Issue
Replies: 6
Views: 12235

Re: QComboBox Documentation Issue

I don't have a snippet or nice test case for you. The code will be in one of these 3 check-ins if I still have it.

https://sourceforge.net/p/reddiamond/code/ci/e5dd3abd1afd66ecc270f1e94d2976fff408f332/log/?path=

78103c
c7cffc
933cb9

I might have found it and fixed it before the check-in though.
by seasoned_geek
Fri Jan 05 2024 12:04 am
Forum: Issues
Topic: double free or corruption
Replies: 5
Views: 10514

Re: double free or corruption

Even Example1 of CsScintilla croaks before display. connect( m_editWidget->get_doc(), &CsScintillaDocument::save_point, this, &MainWindow::savePointReached ); I had been running 5.2.something of Scintilla in CsScintilla and moved to 5.4.1 today. It might also be, when I merged your latest st...
by seasoned_geek
Wed Jan 03 2024 10:28 pm
Forum: Issues
Topic: double free or corruption
Replies: 5
Views: 10514

double free or corruption

Anybody else seeing this? double free or corruption (out) Aborted (core dumped) Took the New Year, new versions approach today. Fresh built RedDiamond this morning prior to upgrading, all was well. Pulled and merged Scinctilla into CsScintilla, everything built all clean and nice, installed the libr...
by seasoned_geek
Thu Dec 07 2023 12:22 am
Forum: Developers
Topic: Moving to C++20
Replies: 7
Views: 40153

Re: Moving to C++20

just so this conversation is properly scoped. Those ones complement systems feed binary data to larger systems, generally across a bus, to a larger system which is running a full OS and the receiver needs native ones complement support. Please not that Unisys mainframes, used by the IRS in America t...
by seasoned_geek
Mon Dec 04 2023 6:31 pm
Forum: Developers
Topic: Moving to C++20
Replies: 7
Views: 40153

Re: Moving to C++20

(1) As of C++20 the standard defines arithmetic will use two's complement in integer calculations. This was not a change in C++ but rather documenting what was already being done internally. Keep in mind, there is nothing preventing you from using one’s complement or sign magnitude in your code bas...
by seasoned_geek
Fri Dec 01 2023 1:18 pm
Forum: Developers
Topic: Moving to C++20
Replies: 7
Views: 40153

Re: Moving to C++20

Not a good idea. https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2020/p2131r0.html Looking at the changes found there I humbly suggest you skip 20 and wait for the next release where the C++ standard will once again undue bad decisions made in the previous release. I haven't gone through everyth...
by seasoned_geek
Fri Dec 01 2023 12:20 pm
Forum: Developers
Topic: Reddit post Qt license
Replies: 11
Views: 41430

Re: Reddit post Qt license

While I do not currently build for Debian you can find unofficial packages for Ubuntu and Fedora here https://sourceforge.net/projects/csscintilla/files/ They are the file names starting with LS-CS. Haven't had any desire to build for Debian itself because often those packages don't work on "De...
by seasoned_geek
Mon Sep 11 2023 8:00 pm
Forum: Issues
Topic: QComboBox Documentation Issue
Replies: 6
Views: 12235

Re: QComboBox Documentation Issue

Did not get compile or runtime error, simply didn't work. The internal did work but I didn't really like so ripped out that code and rewrote to use currentTextChanged(). I have no doubt your internal testing shows "emitted." There were no connect errors what-so-ever yet the slot never got ...