Search found 259 matches

by seasoned_geek
Thu Feb 15 2024 5:42 pm
Forum: Issues
Topic: QXcbClipboard: SelectionRequest too old
Replies: 6
Views: 334

Re: QXcbClipboard: SelectionRequest too old

Additional info. Linux Mint 21.2 64-bit LTS Kernel Linux 5.15.0-94-generic x86_64 MATE 1.26.0 Download LS-CS-1.8.2-amd64-dev.deb from here: https://sourceforge.net/projects/csscintilla/files/Mint_21.2/?upload_just_completed=true and install. Should work with your current stuff as well since I only r...
by seasoned_geek
Thu Feb 15 2024 4:10 pm
Forum: Issues
Topic: setTabTextColor() no longer working
Replies: 3
Views: 123

Re: setTabTextColor() no longer working

I hacked changes to Example2 in CsScintilla because that is the "smallest" it gets. https://sourceforge.net/projects/csscintilla/ Seemed to be working. I really hope this isn't a deep seated bug/change in Scintilla again. I really regret merging the tip of both Scintilla and CopperSpice in...
by seasoned_geek
Wed Feb 14 2024 10:30 pm
Forum: Issues
Topic: QXcbClipboard: SelectionRequest too old
Replies: 6
Views: 334

QXcbClipboard: SelectionRequest too old

All, I know I've reported this before but the search function kept saying my words were too common when I searched for SelectionRequest too old. Putting it in quotes didn't help either. This used to be a once in a while thing, but now if you select something with mouse and answer your phone a great ...
by seasoned_geek
Wed Feb 14 2024 10:18 pm
Forum: Issues
Topic: double free or corruption
Replies: 5
Views: 10577

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: 123

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: 12294

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: 10577

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: 10577

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: 40257

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: 40257

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...