Bug Report A636
Visible to All Users

BarManager vs GNU GetText - an invalid pointer operation exception is raised when try to translate the component and then close the application

created 19 years ago

If you have a barmanager on a form, call TranslateComponent(self), then the program will crash on exit.

  1. Download Dxgettext from http://dybdahl.dk/dxgettext/download/
  2. Run the sample project I attached.
  3. Close the program and it crashes
    This program will translate strings in the dxbarmanager component. Dxgettext has the possibility to ignore certain strings so maybe we need to add some properties of the dxbarmanager to the ignore list?
Comments (2)
DevExpress Support Team 19 years ago

    This issue does not relate to our Suites. The procedure TranslateComponent calls the TranslateStrings method , which does not take the existance of the objects in the list into account, these objects are being destroyed by Assign method calling implicitly.
    procedure TGnuGettextInstance.TranslateStrings(sl: TStrings;const TextDomain:string);
    var
      line: string;
      i: integer;
      s:TStringList;
    begin
      if sl.Count > 0 then begin
        sl.BeginUpdate;
        try
          s:=TStringList.Create;
          try
            s.Assign (sl);
            for i:=0 to s.Count-1 do begin
              line:=s.Strings[i];
              if line<>'' then
                s.Strings[i]:=dgettext(TextDomain,line);
            end;
            sl.Assign(s);
          finally
            FreeAndNil (s);
          end;
        finally
          sl.EndUpdate;
        end;
      end;
    end;

    DevExpress Support Team 19 years ago

      As workaround, we suggest that you try to use the following approach:
      constructor TForm1.Create(AOwner: TComponent);
      var
        I: Integer;
        AObjects: TObjectList;
      begin
        inherited;
        AObjects := TObjectList.Create(False);
        try
          for I := 0 to dxBarManager1.Categories.Count - 1 do
          begin
            AObjects.Add(dxBarManager1.Categories.Objects[I]);
            dxBarManager1.Categories.Objects[I] := nil;
          end;
          TranslateComponent(self);
          for I := 0 to AObjects.Count - 1 do
            dxBarManager1.Categories.Objects[I] := AObjects[I];
        finally
          AObjects.Free;
        end;
      end;

      Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

      Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.