Bug 94527 - IDE (Integrated Development Environment) Handling of case in constant names
Summary: IDE (Integrated Development Environment) Handling of case in constant names
Status: NEW
Alias: None
Product: LibreOffice
Classification: Unclassified
Component: BASIC (show other bugs)
Version:
(earliest affected)
Inherited From OOo
Hardware: Other All
: medium enhancement
Assignee: Not Assigned
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: BASIC-IDE
  Show dependency treegraph
 
Reported: 2015-09-26 10:30 UTC by Óvári
Modified: 2019-04-22 20:02 UTC (History)
2 users (show)

See Also:
Crash report or crash signature:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Óvári 2015-09-26 10:30:01 UTC
Once a constant is defined (eg with Const statement), typing the constant later in the code will automatically change to the constant case defined in the Const statement.

   Having the statement:
     Const my_Integer_Constant = 2015
   And typing the following line
     my_integer_constant = my_integer_constant + 5
   Would change to
     my_Integer_Constant = my_Integer_Constant + 5

If the constant case is changed in the Const statement, all references to the constant in the code should automatically update.

   In example shown above, if the Const statement is changed to:
     Const MY_INTEGER_CONSTANT = 2015
   the statements with that variable should automatically update to:
     MY_INTEGER_CONSTANT = MY_INTEGER_CONSTANT + 5

Thank you
Comment 1 Cor Nouws 2015-09-26 11:24:15 UTC
.