@@ -68,22 +68,18 @@ export class UI {
6868
6969this . referencesStatusBarItem = vscode . window . createStatusBarItem ( "c.cpp.references.statusbar" , vscode . StatusBarAlignment . Right , 901 ) ;
7070this . referencesStatusBarItem . name = localize ( "c.cpp.references.statusbar" , "C/C++ References Status" ) ;
71- this . referencesStatusBarItem . text = "" ;
7271this . referencesStatusBarItem . tooltip = "" ;
7372this . referencesStatusBarItem . command = "C_Cpp.ShowReferencesProgress" ;
7473this . ShowReferencesIcon = false ;
7574
7675this . intelliSenseStatusBarItem = vscode . window . createStatusBarItem ( "c.cpp.intellisense.statusbar" , vscode . StatusBarAlignment . Right , 903 ) ;
7776this . intelliSenseStatusBarItem . name = localize ( "c.cpp.intellisense.statusbar" , "C/C++ IntelliSense Status" ) ;
78- this . intelliSenseStatusBarItem . text = "" ;
7977this . intelliSenseStatusBarItem . tooltip = this . updatingIntelliSenseTooltip ;
8078this . ShowFlameIcon = false ;
8179
8280this . browseEngineStatusBarItem = vscode . window . createStatusBarItem ( "c.cpp.tagparser.statusbar" , vscode . StatusBarAlignment . Right , 902 ) ;
8381this . browseEngineStatusBarItem . name = localize ( "c.cpp.tagparser.statusbar" , "C/C++ Tag Parser Status" ) ;
84- this . browseEngineStatusBarItem . text = "" ;
8582this . browseEngineStatusBarItem . tooltip = localize ( "discovering.files.tooltip" , "Discovering files" ) ;
86- this . browseEngineStatusBarItem . command = "" ;
8783this . ShowDBIcon = false ;
8884
8985this . codeAnalysisProgram = "clang-tidy" ;
@@ -117,7 +113,7 @@ export class UI {
117113if ( val ) {
118114this . browseEngineStatusBarItem . command = "C_Cpp.ShowParsingCommands" ;
119115} else {
120- this . browseEngineStatusBarItem . command = "" ;
116+ this . browseEngineStatusBarItem . command = undefined ;
121117}
122118}
123119