Sorien

Results 18 issues of Sorien

## Bug report ### Describe the bug Crash when navigating in Kodi menus/fast switching tv channels ## Expected Behavior Do not crash ## Possible Fix ### Debuglog The debuglog can...

``` pascal initialization InterceptCreate(@Dialogs.ShowMessage, @DialogHelper.ShowMessage); ``` ![image](https://cloud.githubusercontent.com/assets/1270275/12319187/b9fdf47a-baa0-11e5-8f37-f86438d7ac4f.png)

today many ppl are behind http proxy for security reasons but ultra vnc server doesn't support such option. would be possible to add it, according to specs its just one...

Rudi

pls could you add support for unit scopes http://docwiki.embarcadero.com/RADStudio/Rio/en/Unit_Scope_Names ```pascal uses Vcl.Forms; // undeclared identifier ``` in delphi you can specify default unit scopes like `Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;System;Xml;Data;Datasnap;Web;Soap;Winapi;WinAPI.Foundation;System.Win;FMX` in JB Idea project...

we are using something like ```pascal procedure Foo(); begin // comment if Test then Test() else // comment if Test then Test; end; ``` or ```pascal procedure Foo(); begin //...

according http://edn.embarcadero.com/article/10280#3.0 we should use PascalCase/UpperCamelCase for naming it Would be nice to capitalize first letter automatically during code format like ```pascal procedure TDBEventThread.processEvents; var i: Integer; str: string; begin...

// before formatting ``` pascal function TZConnectionHelper.ExecuteSelect(const Sql: string): TZReadOnlyQuery; begin Result := TZReadOnlyQuery.Create(nil); Result.SQL.Text := Sql; end; ``` // after formatting ``` pascal function TZConnectionHelper.ExecuteSelect(const Sql: string): TZReadOnlyQuery; begin...

imagine i'm calling function like ``` pascal Import('foo', ':bar,:Description,NULL,NULL,NULL,NULL', ['bar', 'Description'], ['bar', 'LANSPEDAT515.Des110'], XmlNodes); ``` currently formatter can wrap after x chars or make it one line (disable auto wraps)...

there is something weird with symbol definitions when you have two projects in project group and you will build/compile first one then open some unit from second project and you...

before format ``` procedure foo() begin begin //comment begin end; end; end; ``` after format ``` procedure foo() begin begin //comment begin end; end; end; ``` should be ``` procedure...