Dmitry-Me
Dmitry-Me
Code analysis says that public static async void addTextToOutputWindow(string text) is not the best option because https://stackoverflow.com/q/53215577 Looks like it should be refactored.
Visual Studio allows changing compilation settings per file - select a .cpp or .c file in Solution Explorer and for example add a new preprocessor symbols. If you look at...
Currently if two or more source files have been edited and not yet saved and "save all" is pressed the documentSaved() handler is invoked once for each of the files...
So a coworker of mine wrote some C# class and annotated it with [TsInterface] attribute and the class has a `DateTime` property. When the project is being built I see...
Bootstrapper.Main() goes like: 1. check that args is not empty 2. check that args[0]=="profile" and if it is then 3. invoke File.Exists(args[1]) if it so happens that args only contains...
I got Selenium IDE sources from their release branch https://github.com/SeleniumHQ/selenium-ide/tree/v3 and try to "peru sync" it on Windows Server under Git Bash. According to travis.yml I have to first install...
**Is your feature request related to a problem? Please describe.** I have some "impossible" barely reproducible issue such that after a testset completes it cannot produce a report, I see...
This code: XMLDocument doc; doc.SaveFile( "some/valid/path.xml" ); yields an empty file on disk and `XMLDocument::Error()` being `false`. Is that expected?
I see that even `StringEqual()` is declared inline. Is that necessary? What would happen if it was inside the .cpp?
There's no point in declaring a variable and then assigning later if the two can be merged. `ttime` being reassigned for no reason was found with Cppcheck.