[framework-issues] [Issue 90178] "File already exists" warn ing dialog is empty

2008-06-04 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90178


User cmc changed the following:

What|Old value |New value

 Assigned to|mav   |cmc

   Component|framework |tools

Priority|P2|P3

  QA contact|[EMAIL PROTECTED]  |[EMAIL PROTECTED]

Subcomponent|ui|code





--- Additional comments from [EMAIL PROTECTED] Wed Jun  4 08:03:29 + 
2008 ---
I'm happy to take this fix into cmcfixes46

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 90178] "File already exists" warn ing dialog is empty

2008-06-03 Thread rt
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90178





--- Additional comments from [EMAIL PROTECTED] Wed Jun  4 06:48:10 + 
2008 ---
I'd prefer changing tools' resmgr.hxx

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 90178] "File already exists" warn ing dialog is empty

2008-06-03 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90178


User cmc changed the following:

What|Old value |New value

  CC|'cmc,mechtilde'   |'cmc,mechtilde,rt'





--- Additional comments from [EMAIL PROTECTED] Tue Jun  3 15:25:29 + 
2008 ---
change occurred in supdremove02

cmc->rt: what should we do, change resmgr.hxx in case there are more uses of the
pattern like this ? Or just fix the gnome fpicker one ?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 90178] "File already exists" warn ing dialog is empty

2008-06-03 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90178





--- Additional comments from [EMAIL PROTECTED] Tue Jun  3 15:20:42 + 
2008 ---
ok, I see what's going on here.

originally in tools/inc/tools/resmgr.hxx

#define CREATEVERSIONRESMGR_NAME( Name )   #Name MAKE_NUMSTR( SUPD )
#define CREATEVERSIONRESMGR( Name ) ResMgr::CreateResMgr(
CREATEVERSIONRESMGR_NAME( Name ) )

in the DEV300 series has changed to 

#define CREATEVERSIONRESMGR_NAME( Name )   #Name
#define CREATEVERSIONRESMGR( Name )ResMgr::CreateResMgr( #Name )

and in resourceprovider.cxx we have 
#define RES_NAME fps_office
...
m_ResMgr = CREATEVERSIONRESMGR( RES_NAME );

e.g. take the following test and use gcc -E on it 
#define FOO svt

#define CREATEVERSIONRESMGR_NAME( Name )   #Name
#define CREATEVERSIONRESMGR( Name )ResMgr::CreateResMgr( #Name )
CREATEVERSIONRESMGR( FOO )
#undef CREATEVERSIONRESMGR_NAME
#undef CREATEVERSIONRESMGR
#define CREATEVERSIONRESMGR_NAME( Name )   #Name
#define CREATEVERSIONRESMGR( Name )ResMgr::CreateResMgr(
CREATEVERSIONRESMGR_NAME( Name ) )
CREATEVERSIONRESMGR( FOO )

the outcome is that what used to be 
ResMgr::CreateResMgr( "svt" )
now becomes
ResMgr::CreateResMgr( "FOO" )

I suggest that the safest fix is probably to change tools from
#define CREATEVERSIONRESMGR( Name )ResMgr::CreateResMgr( #Name )
back to 
#define CREATEVERSIONRESMGR( Name )ResMgr::CreateResMgr(
CREATEVERSIONRESMGR_NAME( Name ) )

so as to get the same expansion rules, otherwise I can certainly change the
gnome usage for this one case. 

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 90178] "File already exists" warn ing dialog is empty

2008-06-03 Thread swubuntu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90178





--- Additional comments from [EMAIL PROTECTED] Tue Jun  3 14:37:38 + 
2008 ---
Ubuntu Linux 7.10 (Gnome)

When "Tools->Options->General->Open/Save Dialogs" is checked, everything is 
fine.
 
When "Tools->Options->General->Open/Save Dialogs" checkbox is unchecked, the
dialog is empty, as shown in the screenshot.

locale
LANG=de_DE.UTF-8


   

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 90178] "File already exists" warn ing dialog is empty

2008-06-03 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90178





--- Additional comments from [EMAIL PROTECTED] Tue Jun  3 14:19:37 + 
2008 ---
The code in question is...

dlg = gtk_message_dialog_new( NULL,
GTK_DIALOG_MODAL,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_YES_NO,
  OUStringToOString(
aResProvider.getResString( FILE_PICKER_OVERWRITE ),
RTL_TEXTENCODING_UTF8 ).getStr() );

where FILE_PICKER_OVERWRITE is STR_SVT_ALREADYEXISTOVERWRITE

and it works fine for me in English, and I haven't heard anything else on other
languages, so

a) if you use the "built-in" dialogs does the string work ? i.e. say "Die Datei
existiert bereits. Soll sie überschrieben werden?"
b) what's the output of locale, just to check what exactly it is

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 90178] "File already exists" warn ing dialog is empty

2008-06-03 Thread pl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90178


User pl changed the following:

What|Old value |New value

  CC|'mechtilde'   |'cmc,mechtilde'





--- Additional comments from [EMAIL PROTECTED] Tue Jun  3 14:03:58 + 
2008 ---
depending on what dialog that actually is that might be a problem in vcl (if
it's one actually an OOo dialog) or in the native file picker (in which case cmc
might have a hint for this). Adding him to CC.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 90178] "File already exists" warn ing dialog is empty

2008-06-03 Thread pl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90178





--- Additional comments from [EMAIL PROTECTED] Tue Jun  3 14:02:18 + 
2008 ---
Since we seem to have difficulties to reproduce this, on what platform does this
actually happen ? Without a method of reproduction there can be no fix.

By "Having OOo-Dialogs not activated", you mean that in
"Tools->Options->General->Open/Save Dialogs" the checkbox is unchecked ?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 90178] "File already exists" warn ing dialog is empty

2008-06-02 Thread tm
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90178


User tm changed the following:

What|Old value |New value

 Assigned to|tm|mav





--- Additional comments from [EMAIL PROTECTED] Mon Jun  2 13:44:45 + 
2008 ---
TM->MAV: please have a look, thanks !

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 90178] "File already exists" warn ing dialog is empty

2008-05-30 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90178


User mechtilde changed the following:

What|Old value |New value

  CC|''|'mechtilde'

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW

Keywords|  |oooqa, regression, release
|  |_blocker

Target milestone|---   |OOo 3.0





--- Additional comments from [EMAIL PROTECTED] Fri May 30 21:02:36 + 
2008 ---
can confirm

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 90178] "File already exists" warn ing dialog is empty

2008-05-30 Thread swubuntu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90178





--- Additional comments from [EMAIL PROTECTED] Fri May 30 20:57:28 + 
2008 ---
Created an attachment (id=54100)
Screenshot. Warning is empty. Should show: "File already exists. Do you want to 
overwrite?"


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 90178] "File already exists" warn ing dialog is empty

2008-05-30 Thread swubuntu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90178
 Issue #|90178
 Summary|"File already exists" warning dialog is empty
   Component|framework
 Version|DEV300m14
Platform|PC
 URL|
  OS/Version|Linux
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|ui
 Assigned to|tm
 Reported by|swubuntu





--- Additional comments from [EMAIL PROTECTED] Fri May 30 20:55:11 + 
2008 ---
Having OOo-Dialogs not activated, the warning "File already exists" (to prevent
overwriting an existing file by saving to the same name) does not show up. The
dialog is empty. See screenshot.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]