change SetHelpEventPosition to SetHelpIDEvent (PR #25812)

25 views
Skip to first unread message

StevenPHirshman

unread,
Sep 18, 2025, 1:00:24 PM (7 days ago) Sep 18
to wx-...@googlegroups.com, Subscribed

You can view, comment on, or merge this pull request online at:

  https://github.com/wxWidgets/wxWidgets/pull/25812

Commit Summary

File Changes

(5 files)

Patch Links:


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812@github.com>

VZ

unread,
Sep 18, 2025, 3:55:58 PM (7 days ago) Sep 18
to wx-...@googlegroups.com, Subscribed
vadz left a comment (wxWidgets/wxWidgets#25812)

Err, why open a new PR instead of (force, if necessary) pushing to #25809? Please push there and close this one or if you intend to use this one, close the other one.

In any case, there are still build errors, please open the web page in your browser and click on the links to see them.


Reply to this email directly, view it on GitHub, or unsubscribe.

You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/c3309434988@github.com>

StevenPHirshman

unread,
Sep 18, 2025, 5:04:57 PM (7 days ago) Sep 18
to wx-...@googlegroups.com, Subscribed
StevenPHirshman left a comment (wxWidgets/wxWidgets#25812)
I tried to manually upload the 4 files that I changed but they are not getting updated. What am I doing wrong?

***@***.***

From: VZ ***@***.***>
Sent: Thursday, September 18, 2025 3:56 PM
To: wxWidgets/wxWidgets ***@***.***>
Cc: StevenPHirshman ***@***.***>; Author ***@***.***>
Subject: Re: [wxWidgets/wxWidgets] change SetHelpEventPosition to SetHelpIDEvent (PR #25812)

[Image removed by sender.]vadz left a comment (wxWidgets/wxWidgets#25812)<https://github.com/wxWidgets/wxWidgets/pull/25812#issuecomment-3309434988>

Err, why open a new PR instead of (force, if necessary) pushing to #25809<https://github.com/wxWidgets/wxWidgets/pull/25809>? Please push there and close this one or if you intend to use this one, close the other one.

In any case, there are still build errors, please open the web page in your browser and click on the links to see them.


Reply to this email directly, view it on GitHub<https://github.com/wxWidgets/wxWidgets/pull/25812#issuecomment-3309434988>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/BNH2DLGMSF6YNW33QE4OEO33TME4PAVCNFSM6AAAAACG4LUMMKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTGMBZGQZTIOJYHA>.
You are receiving this because you authored the thread.Message ID: ***@***.***>


Reply to this email directly, view it on GitHub, or unsubscribe.

You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/c3309721538@github.com>

oneeyeman1

unread,
Sep 18, 2025, 5:07:39 PM (7 days ago) Sep 18
to wx-...@googlegroups.com, Subscribed
oneeyeman1 left a comment (wxWidgets/wxWidgets#25812)

@StevenPHirshman ,
How are you trying to upload them?

Thank you.


Reply to this email directly, view it on GitHub, or unsubscribe.

You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/c3309728117@github.com>

VZ

unread,
Sep 18, 2025, 5:14:36 PM (7 days ago) Sep 18
to wx-...@googlegroups.com, Subscribed
vadz left a comment (wxWidgets/wxWidgets#25812)

I tried to manually upload the 4 files that I changed but they are not getting updated. What am I doing wrong?

Sorry, I've never used file upload interface, so I don't know. If you can use normal Git, please do.

Also, please strip quoted contents from your email replies, this makes the PR comments quite unreadable. Thanks!


Reply to this email directly, view it on GitHub, or unsubscribe.

You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/c3309747442@github.com>

StevenPHirshman

unread,
Sep 18, 2025, 6:18:50 PM (7 days ago) Sep 18
to wx-...@googlegroups.com, Subscribed
StevenPHirshman left a comment (wxWidgets/wxWidgets#25812)

I tried dragging and dropping the files in the file upload box. That didn't seem to work. What is working is if I edit the files online.


Reply to this email directly, view it on GitHub, or unsubscribe.

You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/c3309881353@github.com>

StevenPHirshman

unread,
Sep 18, 2025, 10:08:02 PM (6 days ago) Sep 18
to wx-...@googlegroups.com, Subscribed
StevenPHirshman left a comment (wxWidgets/wxWidgets#25812)

I am about ready to give up. My files keep erroring out in the "Check for trailing whitespace and TABs" test. I don't know what to do to fix it.


Reply to this email directly, view it on GitHub, or unsubscribe.

You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/c3310252477@github.com>

oneeyeman1

unread,
Sep 19, 2025, 1:00:25 AM (6 days ago) Sep 19
to wx-...@googlegroups.com, Subscribed
oneeyeman1 left a comment (wxWidgets/wxWidgets#25812)

@StevenPHirshman ,
Please install "git for windows" if you are on windows and then use the regular way to do that : git add&& git commit -m && git push. Didn't you make a PR that way?

Thank you.


Reply to this email directly, view it on GitHub, or unsubscribe.

You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/c3310565379@github.com>

Maarten

unread,
Sep 19, 2025, 5:43:17 AM (6 days ago) Sep 19
to wx-...@googlegroups.com, Subscribed
MaartenBent left a comment (wxWidgets/wxWidgets#25812)

You probably use a text editor on Windows that uses \r\n for new lines. The wxWidgets files expect \n (unix-style) new lines.

I think the easiest way to deal with this is to use an editor that supports editorconfig. Then it will automatically use the correct editor settings (\n new-lines, 4-spaces indentation, no trailing white-space).

The other error seems to be two new-lines at the end of the file, make sure there is only one.

But all these errors happen in the other PR you opened. Maybe move the conversation there?


Reply to this email directly, view it on GitHub, or unsubscribe.

You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/c3311481798@github.com>

StevenPHirshman

unread,
Sep 19, 2025, 7:27:03 AM (6 days ago) Sep 19
to wx-...@googlegroups.com, Subscribed
StevenPHirshman left a comment (wxWidgets/wxWidgets#25812)

I will try to use a different editor. Thank you for the suggestion.


Reply to this email directly, view it on GitHub, or unsubscribe.

You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/c3311828890@github.com>

StevenPHirshman

unread,
Sep 19, 2025, 11:25:31 AM (6 days ago) Sep 19
to wx-...@googlegroups.com, Push

@StevenPHirshman pushed 1 commit.

  • 044b3b0 Delete include/wx/window.h


View it on GitHub or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/before/d01f5a44eb88becbb1fb0e89e60f6a61d528ad12/after/044b3b0191c93edfd63c5ba3b8aee8b9bf12e559@github.com>

StevenPHirshman

unread,
Sep 19, 2025, 11:26:19 AM (6 days ago) Sep 19
to wx-...@googlegroups.com, Push

@StevenPHirshman pushed 1 commit.

  • 722cdc2 Delete src/common/cshelp.cpp


View it on GitHub or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/before/044b3b0191c93edfd63c5ba3b8aee8b9bf12e559/after/722cdc2d9217721ede3a9288570cb38cab5f735b@github.com>

StevenPHirshman

unread,
Sep 19, 2025, 11:26:42 AM (6 days ago) Sep 19
to wx-...@googlegroups.com, Push

@StevenPHirshman pushed 1 commit.

  • 4fbc8f0 Delete src/common/tbarbase.cpp


View it on GitHub or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/before/722cdc2d9217721ede3a9288570cb38cab5f735b/after/4fbc8f061e0fd0a04cd8c51d36804160c0419026@github.com>

StevenPHirshman

unread,
Sep 19, 2025, 11:27:09 AM (6 days ago) Sep 19
to wx-...@googlegroups.com, Push

@StevenPHirshman pushed 1 commit.

  • 8152db1 Delete src/common/wincmn.cpp


View it on GitHub or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/before/4fbc8f061e0fd0a04cd8c51d36804160c0419026/after/8152db14f05af25ecbb24baa0860e3257708630f@github.com>

StevenPHirshman

unread,
Sep 19, 2025, 11:27:51 AM (6 days ago) Sep 19
to wx-...@googlegroups.com, Push

@StevenPHirshman pushed 1 commit.

  • e59b8b2 Delete include/wx/tbarbase.h


View it on GitHub or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/before/8152db14f05af25ecbb24baa0860e3257708630f/after/e59b8b201a7666eae2ac8e7f021725938ca77a28@github.com>

StevenPHirshman

unread,
Sep 19, 2025, 11:28:46 AM (6 days ago) Sep 19
to wx-...@googlegroups.com, Subscribed

@StevenPHirshman commented on this pull request.

removed old files


Reply to this email directly, view it on GitHub, or unsubscribe.

You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/review/3245465832@github.com>

VZ

unread,
Sep 19, 2025, 11:50:02 AM (6 days ago) Sep 19
to wx-...@googlegroups.com, Subscribed
vadz left a comment (wxWidgets/wxWidgets#25812)

Sorry, I really appreciate that you're trying to help, but you are doing something really, really weird, I have no idea why did you think that removing the files could be a good idea.

I'm closing this, please make the modifications in your own fork of this repository and once you see that everything is good there, please push your changes to #25809 or, if you really can't do it, open a new PR.

Of course, if you have any questions, please do ask them, but I have the impression that this is going nowhere.


Reply to this email directly, view it on GitHub, or unsubscribe.

You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/c3312716943@github.com>

VZ

unread,
Sep 19, 2025, 11:50:02 AM (6 days ago) Sep 19
to wx-...@googlegroups.com, Subscribed

Closed #25812.


Reply to this email directly, view it on GitHub, or unsubscribe.

You are receiving this because you are subscribed to this thread.Message ID: <wxWidgets/wxWidgets/pull/25812/issue_event/19802677124@github.com>

Reply all
Reply to author
Forward
0 new messages